* lisp/loadup.el: Increase max-lisp-eval-depth while macroexpanding macroexp.
This commit is contained in:
parent
2b968ea662
commit
f8b25a5169
2 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,7 @@
|
|||
2014-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* loadup.el: Increase max-lisp-eval-depth while macroexpanding macroexp.el.
|
||||
|
||||
* emacs-lisp/pcase.el: Allow (F . ARGS) in `app' patterns.
|
||||
(pcase--funcall, pcase--eval): New functions.
|
||||
(pcase--u1): Use them for guard, pred, let, and app.
|
||||
|
|
|
|||
|
|
@ -119,7 +119,8 @@
|
|||
(let ((macroexp--pending-eager-loads '(skip)))
|
||||
(load "emacs-lisp/pcase"))
|
||||
;; Re-load macroexp so as to eagerly macro-expand its uses of pcase.
|
||||
(load "emacs-lisp/macroexp"))
|
||||
(let ((max-lisp-eval-depth (* 2 max-lisp-eval-depth)))
|
||||
(load "emacs-lisp/macroexp")))
|
||||
|
||||
(load "cus-face")
|
||||
(load "faces") ; after here, `defface' may be used.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue