aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/cperl-mode.el
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2003-02-14 09:58:50 +0000
committerJuanma Barranquero <[email protected]>2003-02-14 09:58:50 +0000
commit07cb2aa33cf1722bb671dbcff800b26c2fd0b0a5 (patch)
tree8a8cbfcc526add08a869e320d8fd51bbfc8b99c9 /lisp/progmodes/cperl-mode.el
parentbabce063274ac2896cad94f47bd2c937da25e4e9 (diff)
(cperl-next-bad-style): Fix use of character constant.
Diffstat (limited to 'lisp/progmodes/cperl-mode.el')
-rw-r--r--lisp/progmodes/cperl-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el
index a7c1772012..bde44cbea9 100644
--- a/lisp/progmodes/cperl-mode.el
+++ b/lisp/progmodes/cperl-mode.el
@@ -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))