aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2004-11-05 19:07:07 +0000
committerJuri Linkov2004-11-05 19:07:07 +0000
commit392cf16dd0ee9358f8af0cd0d8048b822456bbeb (patch)
tree6fafe02cd26d8ac269b0fb6b6fa009deaef8d165
parentca53db337fe95e923eb0b030999d313e16b100a9 (diff)
downloademacs-392cf16dd0ee9358f8af0cd0d8048b822456bbeb.tar.gz
emacs-392cf16dd0ee9358f8af0cd0d8048b822456bbeb.zip
(edebug-next-token-class): Allow all symbol-constituent characters
after dot, not only digits.
-rw-r--r--lisp/emacs-lisp/edebug.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index 9a7b9efc333..0a6e3fed349 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -714,8 +714,10 @@ already is one.)"
714 (if (and (eq (following-char) ?.) 714 (if (and (eq (following-char) ?.)
715 (save-excursion 715 (save-excursion
716 (forward-char 1) 716 (forward-char 1)
717 (and (>= (following-char) ?0) 717 (or (and (eq (aref edebug-read-syntax-table (following-char))
718 (<= (following-char) ?9)))) 718 'symbol)
719 (not (= (following-char) ?\;)))
720 (memq (following-char) '(?\, ?\.)))))
719 'symbol 721 'symbol
720 (aref edebug-read-syntax-table (following-char)))) 722 (aref edebug-read-syntax-table (following-char))))
721 723