aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Rost2002-10-02 16:31:16 +0000
committerMarkus Rost2002-10-02 16:31:16 +0000
commit3ee5ce58f637f2c5d652c663170216d0f6470bb5 (patch)
treeb3bbc43ae5dcd7f93a9f98afdd297045d93caa60
parentcd1d850fd1eef0e98a018c224ed2fe4852c17de3 (diff)
downloademacs-3ee5ce58f637f2c5d652c663170216d0f6470bb5.tar.gz
emacs-3ee5ce58f637f2c5d652c663170216d0f6470bb5.zip
(sh-alias-alist): Use append instead of nconc.
-rw-r--r--lisp/progmodes/sh-script.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el
index cee0956aed2..3468029b5e6 100644
--- a/lisp/progmodes/sh-script.el
+++ b/lisp/progmodes/sh-script.el
@@ -258,7 +258,7 @@ sh Bourne Shell
258 258
259 259
260(defcustom sh-alias-alist 260(defcustom sh-alias-alist
261 (nconc (if (eq system-type 'gnu/linux) 261 (append (if (eq system-type 'gnu/linux)
262 '((csh . tcsh) 262 '((csh . tcsh)
263 (ksh . pdksh))) 263 (ksh . pdksh)))
264 ;; for the time being 264 ;; for the time being