1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(c-emacs-features): Crash-fix: change =' to eq'.

This commit is contained in:
Alan Mackenzie 2009-02-12 12:30:12 +00:00
parent a7442b9538
commit e26019a56b

View file

@ -1459,9 +1459,9 @@ non-nil, a caret is prepended to invert the set."
(and (eq eod-param 'foo)
(setq eod-param arg)
(eq arg 3)))))
(if (save-excursion (and (beginning-of-defun 3) (= bod-param 3)
(if (save-excursion (and (beginning-of-defun 3) (eq bod-param 3)
(not (beginning-of-defun))
(end-of-defun 3) (= eod-param 3)
(end-of-defun 3) (eq eod-param 3)
(not (end-of-defun))))
(setq list (cons 'argumentative-bod-function list))))