diff options
author | Glenn Morris <rgm@gnu.org> | 2005-06-30 16:45:04 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2005-06-30 16:45:04 +0000 |
commit | f42e164952a255f64243dc5fea6db568f981b6eb (patch) | |
tree | 4d4bd05eedeab2505857fd42112003bda61ceee7 /lisp/progmodes | |
parent | 5026b8eed331b754c2bf871d06dd2b21bbdef554 (diff) | |
download | emacs-f42e164952a255f64243dc5fea6db568f981b6eb.tar.gz |
(sh-get-kw): `&' also separates words.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/sh-script.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 23d8374818e..0747fb2fa3e 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -2370,7 +2370,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))))) |