]> git.eshelyaron.com Git - emacs.git/commitdiff
(cperl-next-bad-style): Fix use of character constant.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 14 Feb 2003 09:58:50 +0000 (09:58 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 14 Feb 2003 09:58:50 +0000 (09:58 +0000)
lisp/progmodes/cperl-mode.el

index a7c1772012607e0907a16a360cddd3052f9b252d..bde44cbea911107a77af3b268af9e4bec58f3ccb 100644 (file)
@@ -5980,7 +5980,7 @@ Currently it is tuned to C and Perl syntax."
           (and (eq (following-char) ?\-)
                (save-excursion
                  (skip-chars-backward " \t\n")
-                 (memq (preceding-char) '(?\= ?\> ?\< ?\, ?\(, ?\[, ?\{))))
+                 (memq (preceding-char) '(?\= ?\> ?\< ?\, ?\( ?\[ ?\{))))
           ;; Now check for syntax type
           (save-match-data
             (setq found (point))