diff options
author | Glenn Morris <rgm@gnu.org> | 2008-09-06 19:01:12 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-09-06 19:01:12 +0000 |
commit | 2ca2ebe6f1a1e675e2e27afaaa0d9f114d83167b (patch) | |
tree | f570a1f9edba071c37a0e0c224da11c2d9be2c85 /lisp/progmodes/sh-script.el | |
parent | a7a65779b54d4bfcc56920bce1cac12a1e8ac1c9 (diff) | |
download | emacs-2ca2ebe6f1a1e675e2e27afaaa0d9f114d83167b.tar.gz |
(sh-get-kw): Remove '()' from the list of
unallowed characters; added 2006-10-10 without comment. (Bug#753)
Diffstat (limited to 'lisp/progmodes/sh-script.el')
-rw-r--r-- | lisp/progmodes/sh-script.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 27dbbb4f950..d4e4658b6f2 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))))) |