]> git.eshelyaron.com Git - emacs.git/commitdiff
(sh-get-kw): Remove '()' from the list of
authorGlenn Morris <rgm@gnu.org>
Sat, 6 Sep 2008 19:01:12 +0000 (19:01 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 6 Sep 2008 19:01:12 +0000 (19:01 +0000)
unallowed characters; added 2006-10-10 without comment.  (Bug#753)

lisp/ChangeLog
lisp/progmodes/sh-script.el

index 995d353398e2a3697d7bc8a5e1cbe637118a4b05..907d8cb9238ab0b095da02439e5004689bdd31e8 100644 (file)
@@ -1,5 +1,8 @@
 2008-09-06  Glenn Morris  <rgm@gnu.org>
 
+       * progmodes/sh-script.el (sh-get-kw): Remove '()' from the list of
+       unallowed characters; added 2006-10-10 without comment.  (Bug#753)
+
        * Makefile.in (ELCFILES): Update.
 
 2008-09-06  Chong Yidong  <cyd@stupidchicken.com>
index 27dbbb4f9502847bcfc23c3a8bdaee9c3088d79d..d4e4658b6f22782ac24330945b6d068b36dd2e3b 100644 (file)
@@ -2591,7 +2591,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)))))