emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-29 386d6e74d8: Replace an erroneous eq with an equal in cc-defs.el


From: Alan Mackenzie
Subject: emacs-29 386d6e74d8: Replace an erroneous eq with an equal in cc-defs.el
Date: Thu, 15 Dec 2022 14:26:00 -0500 (EST)

branch: emacs-29
commit 386d6e74d83a2b7cff68bd3e072e640784bb3446
Author: Alan Mackenzie <acm@muc.de>
Commit: Alan Mackenzie <acm@muc.de>

    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 b13f6a5914..dd6d33009d 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]