aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2005-12-06 22:10:07 +0000
committerStefan Monnier2005-12-06 22:10:07 +0000
commit6a6e859a93e0b5eb714c2bc4770bfef871e34ebd (patch)
tree59b23e1617d50a7d2c41b8ffe0df4f1d5b1de24f
parent25c7f31583f8b8de5138d6d82ca4917befc4712c (diff)
downloademacs-6a6e859a93e0b5eb714c2bc4770bfef871e34ebd.tar.gz
emacs-6a6e859a93e0b5eb714c2bc4770bfef871e34ebd.zip
(edebug-skip-whitespace): read1:lread.c says
that comments end at \n, regardless of selective-display.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/emacs-lisp/edebug.el3
2 files changed, 8 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e0b9a01107b..9061ec433a4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
4 that comments end at \n, regardless of selective-display.
5
12005-12-07 Nick Roberts <nickrob@snap.net.nz> 62005-12-07 Nick Roberts <nickrob@snap.net.nz>
2 7
3 * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt) 8 * progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
@@ -23,8 +28,8 @@
23 (gdb-data-list-register-values-handler) 28 (gdb-data-list-register-values-handler)
24 (gdb-data-list-register-values-custom) 29 (gdb-data-list-register-values-custom)
25 (gdb-get-changed-registers, gdb-get-changed-registers-handler) 30 (gdb-get-changed-registers, gdb-get-changed-registers-handler)
26 (gdb-stack-list-locals-handler, gdb-get-register-names): New 31 (gdb-stack-list-locals-handler, gdb-get-register-names):
27 functions for use with GDB 6.4+. 32 New functions for use with GDB 6.4+.
28 (gdb-locals-watch-map-1): New variable for use with GDB 6.4+. 33 (gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
29 (gdb-source-file-regexp, gdb-var-list-children-regexp-1) 34 (gdb-source-file-regexp, gdb-var-list-children-regexp-1)
30 (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp) 35 (gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index 765548083b5..01f1d760109 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -733,8 +733,7 @@ already is one.)"
733 ;; Leave point before the next token, skipping white space and comments. 733 ;; Leave point before the next token, skipping white space and comments.
734 (skip-chars-forward " \t\r\n\f") 734 (skip-chars-forward " \t\r\n\f")
735 (while (= (following-char) ?\;) 735 (while (= (following-char) ?\;)
736 ;; \r is counted as a comment terminator to support selective display. 736 (skip-chars-forward "^\n") ; skip the comment
737 (skip-chars-forward "^\n\r") ; skip the comment
738 (skip-chars-forward " \t\r\n\f"))) 737 (skip-chars-forward " \t\r\n\f")))
739 738
740 739