Mercurial > emacs
changeset 16744:b91256aecd79
(edebug-read-symbol, edebug-read-string): Don't back up after reading.
(edebug-read-sexp): Likewise.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 26 Dec 1996 20:46:51 +0000 |
parents | 612fe5713ede |
children | 1975baf7f996 |
files | lisp/emacs-lisp/edebug.el |
diffstat | 1 files changed, 6 insertions(+), 21 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/edebug.el Thu Dec 26 12:07:05 1996 +0000 +++ b/lisp/emacs-lisp/edebug.el Thu Dec 26 20:46:51 1996 +0000 @@ -8,7 +8,7 @@ ;; LCD Archive Entry: ;; edebug|Daniel LaLiberte|liberte@cs.uiuc.edu ;; |A source level debugger for Emacs Lisp. -;; |$Date: 1996/10/02 21:41:56 $|$Revision: 3.11 $|~/modes/edebug.el| +;; |$Date: 1996/11/09 21:48:07 $|$Revision: 3.12 $|~/modes/edebug.el| ;; This file is part of GNU Emacs. @@ -85,7 +85,7 @@ ;;; Code: (defconst edebug-version - (let ((raw-version "$Revision: 3.11 $")) + (let ((raw-version "$Revision: 3.12 $")) (substring raw-version (string-match "[0-9.]*" raw-version) (match-end 0)))) @@ -752,15 +752,8 @@ (cond ;; read goes one too far if a (possibly quoted) string or symbol ;; is immediately followed by non-whitespace. - ((eq class 'symbol) (prog1 - (edebug-original-read (current-buffer)) - (if (not (eq (aref edebug-read-syntax-table - (preceding-char)) 'symbol)) - (forward-char -1)))) - ((eq class 'string) (prog1 - (edebug-original-read (current-buffer)) - (if (/= (preceding-char) ?\") - (forward-char -1)))) + ((eq class 'symbol) (edebug-original-read (current-buffer))) + ((eq class 'string) (edebug-original-read (current-buffer))) ((eq class 'quote) (forward-char 1) (list 'quote (edebug-read-sexp))) ((eq class 'backquote) @@ -872,18 +865,10 @@ ))) (defun edebug-read-symbol (stream) - (prog1 - (edebug-original-read stream) - ;; loses for escaped chars - (if (not (eq (aref edebug-read-syntax-table - (preceding-char)) 'symbol)) - (forward-char -1)))) + (edebug-original-read stream)) (defun edebug-read-string (stream) - (prog1 - (edebug-original-read stream) - (if (/= (preceding-char) ?\") - (forward-char -1)))) + (edebug-original-read stream)) (defun edebug-read-quote (stream) ;; Turn 'thing into (quote thing)