From 386d6e74d83a2b7cff68bd3e072e640784bb3446 Mon Sep 17 00:00:00 2001 From: Alan Mackenzie Date: Thu, 15 Dec 2022 19:23:19 +0000 Subject: [PATCH] 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. --- lisp/progmodes/cc-defs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2