diff options
| author | Glenn Morris | 2008-09-06 19:01:12 +0000 |
|---|---|---|
| committer | Glenn Morris | 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 emacs-2ca2ebe6f1a1e675e2e27afaaa0d9f114d83167b.zip | |
(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." | |||
| 2591 | (goto-char where)) | 2591 | (goto-char where)) |
| 2592 | (prog1 | 2592 | (prog1 |
| 2593 | (buffer-substring (point) | 2593 | (buffer-substring (point) |
| 2594 | (progn (skip-chars-forward "^ \t\n;&|()")(point))) | 2594 | (progn (skip-chars-forward "^ \t\n;&|")(point))) |
| 2595 | (unless and-move | 2595 | (unless and-move |
| 2596 | (goto-char start))))) | 2596 | (goto-char start))))) |
| 2597 | 2597 | ||