Fix edebug parsing of .,
* lisp/emacs-lisp/edebug.el (edebug-next-token-class): Parse ., correctly (bug#37653).
This commit is contained in:
parent
d60d96ffa0
commit
d181e410fc
2 changed files with 10 additions and 1 deletions
|
@ -675,7 +675,7 @@ Maybe clear the markers and delete the symbol's edebug property?"
|
|||
(or (and (eq (aref edebug-read-syntax-table (following-char))
|
||||
'symbol)
|
||||
(not (= (following-char) ?\;)))
|
||||
(memq (following-char) '(?\, ?\.)))))
|
||||
(eq (following-char) ?.))))
|
||||
'symbol
|
||||
(aref edebug-read-syntax-table (following-char))))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue