Mercurial > emacs
changeset 6226:d90fbaccf96a
(edebug-skip-whitespace): Only \n, not \r, ends a comment.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 06 Mar 1994 21:05:30 +0000 |
parents | 8f92cf89ed7c |
children | f91d4884806e |
files | lisp/emacs-lisp/edebug.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/edebug.el Sun Mar 06 20:39:52 1994 +0000 +++ b/lisp/emacs-lisp/edebug.el Sun Mar 06 21:05:30 1994 +0000 @@ -1074,7 +1074,7 @@ "Leave point before the next token, skipping white space and comments." (skip-chars-forward " \t\r\n\f") (while (= (following-char) ?\;) - (skip-chars-forward "^\n\r") ; skip the comment + (skip-chars-forward "^\n") ; skip the comment (skip-chars-forward " \t\r\n\f"))) (defun edebug-read-sexp ()