diff options
author | Michael R. Mauger <michael@mauger.com> | 2017-04-02 18:10:57 -0400 |
---|---|---|
committer | Michael R. Mauger <michael@mauger.com> | 2017-04-02 18:10:57 -0400 |
commit | 77083e2d34ba5559ae2899d3b03cf08c2e6c5ad4 (patch) | |
tree | 27da92c2a61d664b700860c2d527a4d36000ca37 /lisp/emacs-lisp/edebug.el | |
parent | c5a31f8292c94d19b80a3dbe0b3026693cc1090e (diff) | |
parent | 8e394a7f35c2ba9297d222faa2689e177f268924 (diff) | |
download | emacs-77083e2d34ba5559ae2899d3b03cf08c2e6c5ad4.tar.gz emacs-77083e2d34ba5559ae2899d3b03cf08c2e6c5ad4.tar.bz2 emacs-77083e2d34ba5559ae2899d3b03cf08c2e6c5ad4.zip |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'lisp/emacs-lisp/edebug.el')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 60133055623..4116e31d0a9 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -733,9 +733,9 @@ Maybe clear the markers and delete the symbol's edebug property?" ((eq class 'string) (read (current-buffer))) ((eq class 'quote) (forward-char 1) (list 'quote (edebug-read-sexp))) - ((eq class 'backquote) + ((eq class 'backquote) (forward-char 1) (list '\` (edebug-read-sexp))) - ((eq class 'comma) + ((eq class 'comma) (forward-char 1) (list '\, (edebug-read-sexp))) (t ; anything else, just read it. (read (current-buffer)))))) |