mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-22 12:57:34 +00:00
(sh-get-kw): Remove '()' from the list of
unallowed characters; added 2006-10-10 without comment. (Bug#753)
This commit is contained in:
parent
a7a65779b5
commit
2ca2ebe6f1
2 changed files with 4 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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)))))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue