# HG changeset patch # User Juri Linkov # Date 1099681627 0 # Node ID 47b64fe4daa846958458d35884b0b9f3c5aeeebb # Parent 117144126cd9a15b640aa3c226669b630aa35d39 (edebug-next-token-class): Allow all symbol-constituent characters after dot, not only digits. diff -r 117144126cd9 -r 47b64fe4daa8 lisp/emacs-lisp/edebug.el --- a/lisp/emacs-lisp/edebug.el Fri Nov 05 19:06:24 2004 +0000 +++ b/lisp/emacs-lisp/edebug.el Fri Nov 05 19:07:07 2004 +0000 @@ -714,8 +714,10 @@ (if (and (eq (following-char) ?.) (save-excursion (forward-char 1) - (and (>= (following-char) ?0) - (<= (following-char) ?9)))) + (or (and (eq (aref edebug-read-syntax-table (following-char)) + 'symbol) + (not (= (following-char) ?\;))) + (memq (following-char) '(?\, ?\.))))) 'symbol (aref edebug-read-syntax-table (following-char))))