diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-10-16 04:44:22 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-10-16 04:44:22 +0200 |
commit | a1dbb81f1808194da1b3f2af29beef704dcd1f5a (patch) | |
tree | e11356d175bea8c289b92008cc9bcc5e4c8f56de /lisp/emacs-lisp/easy-mmode.el | |
parent | 7fd1093d28e8be4683f45000fa9c0440cbe8182c (diff) | |
download | emacs-a1dbb81f1808194da1b3f2af29beef704dcd1f5a.tar.gz emacs-a1dbb81f1808194da1b3f2af29beef704dcd1f5a.tar.bz2 emacs-a1dbb81f1808194da1b3f2af29beef704dcd1f5a.zip |
Fix some &rest body edebug specs
* lisp/ses.el (ses--letref):
* lisp/emacs-lisp/crm.el (crm--completion-command): Fix edebug
&rest body spec (bug#28747).
* lisp/emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
* lisp/emacs-lisp/inline.el (inline--leteval)
(inline--letlisteval, inline-letevals):
Diffstat (limited to 'lisp/emacs-lisp/easy-mmode.el')
-rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index ccdb25ef60e..9e239bfa3b4 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el @@ -626,7 +626,7 @@ ENDFUN should return the end position (with or without moving point). NARROWFUN non-nil means to check for narrowing before moving, and if found, do `widen' first and then call NARROWFUN with no args after moving. BODY is executed after moving to the destination location." - (declare (indent 5) (debug (exp exp exp def-form def-form &rest def-body))) + (declare (indent 5) (debug (exp exp exp def-form def-form def-body))) (let* ((base-name (symbol-name base)) (prev-sym (intern (concat base-name "-prev"))) (next-sym (intern (concat base-name "-next"))) |