From 937d9d7f60460edb1d3f978151599fddcbba2214 Mon Sep 17 00:00:00 2001 From: Reuben Thomas Date: Sun, 27 Aug 2017 00:26:28 +0100 Subject: [PATCH] Remove invalid regexp for shell builtins for wksh MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * lisp/progmodes/sh-script.el (sh-builtins): Shell built-ins have to be literal strings, so remove a regexp for wksh. In any case, it’s a defunct proprietary shell. --- lisp/progmodes/sh-script.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 95fe3b082ba..54c47b719fb 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -709,9 +709,7 @@ removed when closing the here document." ;; The next entry is only used for defining the others (shell "cd" "echo" "eval" "set" "shift" "umask" "unset" "wait") - (wksh sh-append ksh88 - ;; wksh has X toolkit APIs as built-ins! - "Xt[A-Z][A-Za-z]*") + (wksh sh-append ksh88) (zsh sh-append ksh88 "autoload" "bindkey" "builtin" "chdir" "compctl" "declare" "dirs" -- 2.39.2