aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/progmodes/sh-script.el2
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 @@
12008-09-06 Glenn Morris <rgm@gnu.org> 12008-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
52008-09-06 Chong Yidong <cyd@stupidchicken.com> 82008-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