diff options
| author | Glenn Morris | 2005-06-30 16:45:04 +0000 |
|---|---|---|
| committer | Glenn Morris | 2005-06-30 16:45:04 +0000 |
| commit | f42e164952a255f64243dc5fea6db568f981b6eb (patch) | |
| tree | 4d4bd05eedeab2505857fd42112003bda61ceee7 | |
| parent | 5026b8eed331b754c2bf871d06dd2b21bbdef554 (diff) | |
| download | emacs-f42e164952a255f64243dc5fea6db568f981b6eb.tar.gz emacs-f42e164952a255f64243dc5fea6db568f981b6eb.zip | |
(sh-get-kw): `&' also separates words.
| -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." | |||
| 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 | ||