mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-16 08:50:08 +00:00
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:
parent
eb06947063
commit
386d6e74d8
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue