]> git.eshelyaron.com Git - emacs.git/commitdiff
(sh-get-kw): `&' also separates words.
authorGlenn Morris <rgm@gnu.org>
Thu, 30 Jun 2005 16:45:04 +0000 (16:45 +0000)
committerGlenn Morris <rgm@gnu.org>
Thu, 30 Jun 2005 16:45:04 +0000 (16:45 +0000)
lisp/progmodes/sh-script.el

index 23d8374818ef66575da2f309657d596fdd8722e1..0747fb2fa3e622fe6c21767e0a5563e43149060d 100644 (file)
@@ -2370,7 +2370,7 @@ If AND-MOVE is non-nil then move to end of word."
        (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)))))