From 2ca2ebe6f1a1e675e2e27afaaa0d9f114d83167b Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 6 Sep 2008 19:01:12 +0000 Subject: (sh-get-kw): Remove '()' from the list of unallowed characters; added 2006-10-10 without comment. (Bug#753) --- lisp/ChangeLog | 3 +++ lisp/progmodes/sh-script.el | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'lisp') diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 995d353398..907d8cb923 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2008-09-06 Glenn Morris + * progmodes/sh-script.el (sh-get-kw): Remove '()' from the list of + unallowed characters; added 2006-10-10 without comment. (Bug#753) + * Makefile.in (ELCFILES): Update. 2008-09-06 Chong Yidong diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 27dbbb4f95..d4e4658b6f 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -2591,7 +2591,7 @@ If AND-MOVE is non-nil then move to end of word." (goto-char where)) (prog1 (buffer-substring (point) - (progn (skip-chars-forward "^ \t\n;&|()")(point))) + (progn (skip-chars-forward "^ \t\n;&|")(point))) (unless and-move (goto-char start))))) -- cgit v1.2.3