diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/sh-script.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3d434dfed15..2b5515349bf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-10-10 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * progmodes/sh-script.el (sh-get-kw): | is not among the allowed chars | ||
| 4 | for a keyword. | ||
| 5 | |||
| 1 | 2006-10-09 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2006-10-09 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * newcomment.el (comment-valid-prefix-p): Make the check | 8 | * newcomment.el (comment-valid-prefix-p): Make the check |
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index a15cc216f75..83b4bdea759 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el | |||
| @@ -2517,7 +2517,7 @@ If AND-MOVE is non-nil then move to end of word." | |||
| 2517 | (goto-char where)) | 2517 | (goto-char where)) |
| 2518 | (prog1 | 2518 | (prog1 |
| 2519 | (buffer-substring (point) | 2519 | (buffer-substring (point) |
| 2520 | (progn (skip-chars-forward "^ \t\n;&")(point))) | 2520 | (progn (skip-chars-forward "^ \t\n;&|()")(point))) |
| 2521 | (unless and-move | 2521 | (unless and-move |
| 2522 | (goto-char start))))) | 2522 | (goto-char start))))) |
| 2523 | 2523 | ||