From: Lars Ingebrigtsen <larsi@gnus.org>
Date: Mon, 25 Oct 2021 15:41:52 +0000 (+0200)
Subject: Add the "always" zsh builtin to zsh mode
X-Git-Tag: emacs-29.0.90~3671^2~417
X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d53bf7e5b4b0ba0ed5832cabf51e2d27b2e9af4d;p=emacs.git

Add the "always" zsh builtin to zsh mode

* lisp/progmodes/sh-script.el (sh-builtins): Add the "always" zsh
keyword (bug#51387).
---

diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el
index 0dd9f2b4fa2..c6b6f83471d 100644
--- a/lisp/progmodes/sh-script.el
+++ b/lisp/progmodes/sh-script.el
@@ -628,7 +628,8 @@ removed when closing the here document."
     (wksh sh-append ksh88)
 
     (zsh sh-append ksh88
-	 "autoload" "bindkey" "builtin" "chdir" "compctl" "declare" "dirs"
+	 "autoload" "always"
+         "bindkey" "builtin" "chdir" "compctl" "declare" "dirs"
 	 "disable" "disown" "echotc" "enable" "functions" "getln" "hash"
 	 "history" "integer" "limit" "local" "log" "popd" "pushd" "r"
 	 "readonly" "rehash" "sched" "setopt" "source" "suspend" "true"