Function: sh-append

sh-append is a byte-compiled function defined in sh-script.el.gz.

Signature

(sh-append ANCESTOR &rest LIST)

Documentation

Return list composed of first argument (a list) physically appended to rest.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sh-script.el.gz
(defun sh-append (ancestor &rest list)
  "Return list composed of first argument (a list) physically appended to rest."
  (nconc list ancestor))