aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2005-06-30 16:45:04 +0000
committerGlenn Morris2005-06-30 16:45:04 +0000
commitf42e164952a255f64243dc5fea6db568f981b6eb (patch)
tree4d4bd05eedeab2505857fd42112003bda61ceee7
parent5026b8eed331b754c2bf871d06dd2b21bbdef554 (diff)
downloademacs-f42e164952a255f64243dc5fea6db568f981b6eb.tar.gz
emacs-f42e164952a255f64243dc5fea6db568f981b6eb.zip
(sh-get-kw): `&' also separates words.
-rw-r--r--lisp/progmodes/sh-script.el2
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."
2370 (goto-char where)) 2370 (goto-char where))
2371 (prog1 2371 (prog1
2372 (buffer-substring (point) 2372 (buffer-substring (point)
2373 (progn (skip-chars-forward "^ \t\n;")(point))) 2373 (progn (skip-chars-forward "^ \t\n;&")(point)))
2374 (unless and-move 2374 (unless and-move
2375 (goto-char start))))) 2375 (goto-char start)))))
2376 2376