Replace an erroneous eq with an equal in cc-defs.el

* lisp/progmodes/cc-defs.el (c-looking-at-non-alphnumspace): Replace eq with
equal in the XEmacs branch.
This commit is contained in:
Alan Mackenzie 2022-12-15 19:23:19 +00:00
parent eb06947063
commit 386d6e74d8

View file

@ -1826,7 +1826,7 @@ with value CHAR in the region [FROM to)."
'(or (looking-at
"\\([;#]\\|\\'\\|\\s(\\|\\s)\\|\\s\"\\|\\s\\\\|\\s$\\|\\s<\\|\\s>\\)"
(let ((prop (c-get-char-property (point) 'syntax-table)))
(eq prop '(14))))))) ; '(14) is generic comment delimiter.
(equal prop '(14))))))) ; '(14) is generic comment delimiter.
(defsubst c-intersect-lists (list alist)