aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/sh-script.el
diff options
context:
space:
mode:
authorStefan Monnier2006-10-10 21:09:37 +0000
committerStefan Monnier2006-10-10 21:09:37 +0000
commit0f9c4a9694078e41e70426e4eae3bbb52cab0d2a (patch)
tree0cdfa43a0c1d100775f7700e59632e73f06b07b9 /lisp/progmodes/sh-script.el
parent1334cc0ca99a46c5fc51ce880aadbd6daf82e5d7 (diff)
downloademacs-0f9c4a9694078e41e70426e4eae3bbb52cab0d2a.tar.gz
emacs-0f9c4a9694078e41e70426e4eae3bbb52cab0d2a.zip
(sh-get-kw): | is not among the allowed chars for a keyword.
Diffstat (limited to 'lisp/progmodes/sh-script.el')
-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 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