diff options
author | Gemini Lasswell <gazally@runbox.com> | 2017-10-16 11:40:38 -0700 |
---|---|---|
committer | Gemini Lasswell <gazally@runbox.com> | 2017-10-24 08:17:33 -0700 |
commit | 928a106939080df7df6ea158318f5afa5579ddcf (patch) | |
tree | 135db033139f79867c52f3cca7182595b4188c8e /test/lisp/emacs-lisp | |
parent | 46f2ee0d4c7123941bb8decc5e947e356099d7b6 (diff) | |
download | emacs-928a106939080df7df6ea158318f5afa5579ddcf.tar.gz emacs-928a106939080df7df6ea158318f5afa5579ddcf.tar.bz2 emacs-928a106939080df7df6ea158318f5afa5579ddcf.zip |
Fix Edebug specs for map-let and with-maps-do
* lisp/emacs-lisp/map.el (map-let): Fix Edebug spec (bug#24777).
* test/lisp/emacs-lisp/map-tests.el (with-maps-do): Fix Edebug spec.
Diffstat (limited to 'test/lisp/emacs-lisp')
-rw-r--r-- | test/lisp/emacs-lisp/map-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/map-tests.el b/test/lisp/emacs-lisp/map-tests.el index 0a888d88b72..a434c9bd066 100644 --- a/test/lisp/emacs-lisp/map-tests.el +++ b/test/lisp/emacs-lisp/map-tests.el @@ -36,7 +36,7 @@ Each map is built from the following alist data: Evaluate BODY for each created map. \(fn (var map) body)" - (declare (indent 1) (debug t)) + (declare (indent 1) (debug (symbolp body))) (let ((alist (make-symbol "alist")) (vec (make-symbol "vec")) (ht (make-symbol "ht"))) |