# HG changeset patch # User Tassilo Horn # Date 1295007444 -3600 # Node ID b47167f02517b98a3adc44841843da71ebb8b21f # Parent 7e73e0f65914a41ff7810249fb77ec5b46c31721 * progmodes/sh-script.el (sh-other-keywords): Add ZSH's foreach loop keyword. diff -r 7e73e0f65914 -r b47167f02517 lisp/ChangeLog --- a/lisp/ChangeLog Fri Jan 14 12:25:56 2011 +0100 +++ b/lisp/ChangeLog Fri Jan 14 13:17:24 2011 +0100 @@ -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 -r 7e73e0f65914 -r b47167f02517 lisp/progmodes/sh-script.el --- a/lisp/progmodes/sh-script.el Fri Jan 14 12:25:56 2011 +0100 +++ b/lisp/progmodes/sh-script.el Fri Jan 14 13:17:24 2011 +0100 @@ -762,7 +762,7 @@ (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")