diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2021-02-11 19:06:30 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2021-02-11 19:06:30 -0500 |
commit | 3a4b65177f0c26f342e657636ce62e8c16cbb14b (patch) | |
tree | 2ed07caceae9982451944ef475070927d7ea742f /lisp/emacs-lisp/gv.el | |
parent | c55f4055dd28452996d828ee1a65b29c1ddce4c8 (diff) | |
download | emacs-3a4b65177f0c26f342e657636ce62e8c16cbb14b.tar.gz emacs-3a4b65177f0c26f342e657636ce62e8c16cbb14b.tar.bz2 emacs-3a4b65177f0c26f342e657636ce62e8c16cbb14b.zip |
* lisp/emacs-lisp/gv.el (gv-place): Simplify
Diffstat (limited to 'lisp/emacs-lisp/gv.el')
-rw-r--r-- | lisp/emacs-lisp/gv.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/gv.el b/lisp/emacs-lisp/gv.el index 29f8230e6b8..c160aa1fd35 100644 --- a/lisp/emacs-lisp/gv.el +++ b/lisp/emacs-lisp/gv.el @@ -307,7 +307,7 @@ The return value is the last VAL in the list. ;; Autoload this `put' since a user might use C-u C-M-x on an expression ;; containing a non-trivial `push' even before gv.el was loaded. ;;;###autoload -(put 'gv-place 'edebug-form-spec 'edebug-match-form) +(put 'gv-place 'edebug-form-spec '(form)) ;So-called "indirect spec". ;; CL did the equivalent of: ;;(gv-define-macroexpand edebug-after (lambda (before index place) place)) |