diff options
| author | Reuben Thomas | 2017-08-27 00:26:28 +0100 |
|---|---|---|
| committer | Reuben Thomas | 2017-08-27 00:27:53 +0100 |
| commit | 937d9d7f60460edb1d3f978151599fddcbba2214 (patch) | |
| tree | 641b89dcd83109dbe00ed9ee5e726a2f868645e1 /lisp | |
| parent | 0becd64d6320b68911cc84615650a84c021b12e3 (diff) | |
| download | emacs-937d9d7f60460edb1d3f978151599fddcbba2214.tar.gz emacs-937d9d7f60460edb1d3f978151599fddcbba2214.zip | |
Remove invalid regexp for shell builtins for wksh
* 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.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/progmodes/sh-script.el | 4 |
1 files changed, 1 insertions, 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." | |||
| 709 | ;; The next entry is only used for defining the others | 709 | ;; The next entry is only used for defining the others |
| 710 | (shell "cd" "echo" "eval" "set" "shift" "umask" "unset" "wait") | 710 | (shell "cd" "echo" "eval" "set" "shift" "umask" "unset" "wait") |
| 711 | 711 | ||
| 712 | (wksh sh-append ksh88 | 712 | (wksh sh-append ksh88) |
| 713 | ;; wksh has X toolkit APIs as built-ins! | ||
| 714 | "Xt[A-Z][A-Za-z]*") | ||
| 715 | 713 | ||
| 716 | (zsh sh-append ksh88 | 714 | (zsh sh-append ksh88 |
| 717 | "autoload" "bindkey" "builtin" "chdir" "compctl" "declare" "dirs" | 715 | "autoload" "bindkey" "builtin" "chdir" "compctl" "declare" "dirs" |