Mercurial > emacs
changeset 98053:b81c85111ef9
(sh-get-kw): Remove '()' from the list of
unallowed characters; added 2006-10-10 without comment. (Bug#753)
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 06 Sep 2008 19:00:20 +0000 |
parents | d65529848c0a |
children | 61484749c2c0 |
files | lisp/progmodes/sh-script.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/sh-script.el Sat Sep 06 18:56:57 2008 +0000 +++ b/lisp/progmodes/sh-script.el Sat Sep 06 19:00:20 2008 +0000 @@ -2591,7 +2591,7 @@ (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)))))