Mercurial > emacs
changeset 63885:135b9f905ec6
(sh-get-kw): `&' also separates words.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Thu, 30 Jun 2005 16:45:04 +0000 |
parents | 3caa4e1966cf |
children | 577b0b13e4de |
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 Thu Jun 30 16:44:42 2005 +0000 +++ b/lisp/progmodes/sh-script.el Thu Jun 30 16:45:04 2005 +0000 @@ -2370,7 +2370,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)))))