]> git.eshelyaron.com Git - emacs.git/commitdiff
* progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
authorChong Yidong <cyd@stupidchicken.com>
Sun, 1 Nov 2009 17:44:04 +0000 (17:44 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 1 Nov 2009 17:44:04 +0000 (17:44 +0000)
lisp/ChangeLog
lisp/progmodes/sh-script.el

index feab754d2a2a5d00bfc0e7bb40b6ec2410b1a790..9c92b7b507a03a8c7201dffebaecf707aa15e542 100644 (file)
@@ -1,3 +1,7 @@
+2009-11-01  Chong Yidong  <cyd@stupidchicken.com>
+
+       * progmodes/sh-script.el (sh-font-lock-paren): Fix last change.
+
 2009-11-01  Andreas Schwab  <schwab@linux-m68k.org>
 
        * view.el (view-mode-exit): If OLD-BUF is dead bury the buffer
index 0ab55d6a04556ed2610f989fe2e7c475fe52548e..868f4621779959ab2e574eb92e9d4d48c5a6d534 100644 (file)
@@ -1110,7 +1110,7 @@ subshells can nest."
                    (condition-case nil (progn (backward-sexp 1) t)
                      (error nil)))))
          ;; Patterns can be preceded by an open-paren (Bug#1320).
-         (if (= (char-before (point)) ?\()
+         (if (eq (char-before (point)) ?\()
              (backward-char 1))
           (while (progn
                    (forward-comment (- (point-max)))