summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/easy-mmode.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2019-10-16 04:44:22 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2019-10-16 04:44:22 +0200
commita1dbb81f1808194da1b3f2af29beef704dcd1f5a (patch)
treee11356d175bea8c289b92008cc9bcc5e4c8f56de /lisp/emacs-lisp/easy-mmode.el
parent7fd1093d28e8be4683f45000fa9c0440cbe8182c (diff)
downloademacs-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.el2
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")))