(sh-get-kw): Remove '()' from the list of

unallowed characters; added 2006-10-10 without comment.  (Bug#753)
This commit is contained in:
Glenn Morris 2008-09-06 19:01:12 +00:00
parent a7a65779b5
commit 2ca2ebe6f1
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2008-09-06 Glenn Morris <rgm@gnu.org>
* 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 <cyd@stupidchicken.com>

View file

@ -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)))))