From: Alan Mackenzie Date: Thu, 15 Dec 2022 19:23:19 +0000 (+0000) Subject: Replace an erroneous eq with an equal in cc-defs.el X-Git-Tag: emacs-29.0.90~1149 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=386d6e74d83;p=emacs.git 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. --- diff --git a/lisp/progmodes/cc-defs.el b/lisp/progmodes/cc-defs.el index b13f6a5914e..dd6d33009db 100644 --- a/lisp/progmodes/cc-defs.el +++ b/lisp/progmodes/cc-defs.el @@ -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)