Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6a6e859a
Commit
6a6e859a
authored
Dec 06, 2005
by
Stefan Monnier
Browse files
(edebug-skip-whitespace): read1:lread.c says
that comments end at \n, regardless of selective-display.
parent
25c7f315
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
lisp/ChangeLog
lisp/ChangeLog
+7
-2
lisp/emacs-lisp/edebug.el
lisp/emacs-lisp/edebug.el
+1
-2
No files found.
lisp/ChangeLog
View file @
6a6e859a
2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/edebug.el (edebug-skip-whitespace): read1:lread.c says
that comments end at \n, regardless of selective-display.
2005-12-07 Nick Roberts <nickrob@snap.net.nz>
* progmodes/gdb-ui.el (gdb-error-regexp, gdb-first-post-prompt)
...
...
@@ -23,8 +28,8 @@
(gdb-data-list-register-values-handler)
(gdb-data-list-register-values-custom)
(gdb-get-changed-registers, gdb-get-changed-registers-handler)
(gdb-stack-list-locals-handler, gdb-get-register-names):
New
functions for use with GDB 6.4+.
(gdb-stack-list-locals-handler, gdb-get-register-names):
New
functions for use with GDB 6.4+.
(gdb-locals-watch-map-1): New variable for use with GDB 6.4+.
(gdb-source-file-regexp, gdb-var-list-children-regexp-1)
(gdb-var-update-regexp-1, gdb-data-list-register-values-regexp)
...
...
lisp/emacs-lisp/edebug.el
View file @
6a6e859a
...
...
@@ -733,8 +733,7 @@ already is one.)"
;; Leave point before the next token, skipping white space and comments.
(
skip-chars-forward
" \t\r\n\f"
)
(
while
(
=
(
following-char
)
?\;
)
;; \r is counted as a comment terminator to support selective display.
(
skip-chars-forward
"^\n\r"
)
; skip the comment
(
skip-chars-forward
"^\n"
)
; skip the comment
(
skip-chars-forward
" \t\r\n\f"
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment