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 | |
| 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)
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/progmodes/sh-script.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 995d353398e..907d8cb9238 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2008-09-06 Glenn Morris <rgm@gnu.org> | 1 | 2008-09-06 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * progmodes/sh-script.el (sh-get-kw): Remove '()' from the list of | ||
| 4 | unallowed characters; added 2006-10-10 without comment. (Bug#753) | ||
| 5 | |||
| 3 | * Makefile.in (ELCFILES): Update. | 6 | * Makefile.in (ELCFILES): Update. |
| 4 | 7 | ||
| 5 | 2008-09-06 Chong Yidong <cyd@stupidchicken.com> | 8 | 2008-09-06 Chong Yidong <cyd@stupidchicken.com> |
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 | ||