From: Tassilo Horn Date: Fri, 14 Jan 2011 12:17:24 +0000 (+0100) Subject: * progmodes/sh-script.el (sh-other-keywords): Add ZSH's foreach X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~1322^2~233^2~4 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ab7eb8118053e3f9a992bf65afc874ab9fdb8b32;p=emacs.git * progmodes/sh-script.el (sh-other-keywords): Add ZSH's foreach loop keyword. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a14148bf0e0..66fb8f3f12a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2011-01-14 Tassilo Horn + + * progmodes/sh-script.el (sh-other-keywords): Add ZSH's foreach + loop keyword. + 2011-01-14 Stefan Monnier * emacs-lisp/easymenu.el: Add :enable (bug#7754), and obey :label. diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index ee7e4c3b1b6..52a72f0874e 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -762,7 +762,7 @@ flow of control or syntax. See `sh-feature'." (shell "break" "case" "continue" "exec" "exit") (zsh sh-append bash - "select")) + "select" "foreach")) "List of keywords not in `sh-leading-keywords'. See `sh-feature'." :type '(repeat (cons (symbol :tag "Shell")