]> git.eshelyaron.com Git - emacs.git/commitdiff
(c-emacs-features): Crash-fix: change `=' to `eq'.
authorAlan Mackenzie <acm@muc.de>
Thu, 12 Feb 2009 12:30:12 +0000 (12:30 +0000)
committerAlan Mackenzie <acm@muc.de>
Thu, 12 Feb 2009 12:30:12 +0000 (12:30 +0000)
lisp/progmodes/cc-defs.el

index e12b9c1dc13957d4bb4a363ad14ce6036f2051c9..3dde4048db6b44e7840f64ec681afccab68928d9 100644 (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))))