aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-08-23 02:20:54 +0200
committerLars Ingebrigtsen2019-08-23 02:20:54 +0200
commite8f3390dea43d55c49919a9d8595d4ea7461d877 (patch)
treedb9a3f6f87acadaec6b2ac7ace0fd3349f9f68e5
parent4c084ba6b8953dac6f80148c0a20b92b6e7f6932 (diff)
downloademacs-e8f3390dea43d55c49919a9d8595d4ea7461d877.tar.gz
emacs-e8f3390dea43d55c49919a9d8595d4ea7461d877.zip
Fix skeleton edebug spec
* lisp/skeleton.el (skeleton-edebug-spec): Fix edebug spec (bug#24779).
-rw-r--r--lisp/skeleton.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/skeleton.el b/lisp/skeleton.el
index bce73d6bfef..67fc4aae151 100644
--- a/lisp/skeleton.el
+++ b/lisp/skeleton.el
@@ -105,8 +105,8 @@ are integer buffer positions in the reverse order of the insertion order.")
105(defvar skeleton-regions) 105(defvar skeleton-regions)
106 106
107(def-edebug-spec skeleton-edebug-spec 107(def-edebug-spec skeleton-edebug-spec
108 ([&or null stringp (stringp &rest stringp) [[&not atom] def-form]] 108 ([&or null stringp (stringp &rest stringp) [[&not atom] sexp]]
109 &rest &or "n" "_" "-" ">" "@" "&" "!" "resume:" 109 &rest &or "n" "_" "-" ">" "@" "&" "!" "|" "resume:"
110 ("quote" def-form) skeleton-edebug-spec def-form)) 110 ("quote" def-form) skeleton-edebug-spec def-form))
111;;;###autoload 111;;;###autoload
112(defmacro define-skeleton (command documentation &rest skeleton) 112(defmacro define-skeleton (command documentation &rest skeleton)