]> git.eshelyaron.com Git - emacs.git/commitdiff
Replace an erroneous eq with an equal in cc-defs.el
authorAlan Mackenzie <acm@muc.de>
Thu, 15 Dec 2022 19:23:19 +0000 (19:23 +0000)
committerAlan Mackenzie <acm@muc.de>
Thu, 15 Dec 2022 19:23:19 +0000 (19:23 +0000)
* lisp/progmodes/cc-defs.el (c-looking-at-non-alphnumspace): Replace eq with
equal in the XEmacs branch.

lisp/progmodes/cc-defs.el

index b13f6a5914e4add8ba301d98b3d4b6070b9b598d..dd6d33009db8f2a99eec58da137ffcb384fd5025 100644 (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.
 
 \f
 (defsubst c-intersect-lists (list alist)