Fix edebug parsing of .,

* lisp/emacs-lisp/edebug.el (edebug-next-token-class): Parse .,
correctly (bug#37653).
This commit is contained in:
Lars Ingebrigtsen 2022-06-19 14:25:37 +02:00
parent d60d96ffa0
commit d181e410fc
2 changed files with 10 additions and 1 deletions

View file

@ -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))))