emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 5f6ef7c: Stop edebug getting stuck on backquote (Bu


From: Noam Postavsky
Subject: [Emacs-diffs] master 5f6ef7c: Stop edebug getting stuck on backquote (Bug#23651)
Date: Sat, 25 Mar 2017 14:38:28 -0400 (EDT)

branch: master
commit 5f6ef7cba8200d19198e42a9a76fef1618b5f233
Author: Jens Uwe Schmidt <address@hidden>
Commit: Noam Postavsky <address@hidden>

    Stop edebug getting stuck on backquote (Bug#23651)
    
    * lisp/emacs-lisp/edebug.el (edebug-read-sexp): Move forward after
    reading backquote or comma.
    
    Copyright-paperwork-exempt: yes
---
 lisp/emacs-lisp/edebug.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index 6013305..4116e31 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))))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]