Function: aelement
aelement is a byte-compiled function defined in assoc.el.gz.
Signature
(aelement KEY VALUE)
Documentation
Make a list of a cons cell containing car of KEY and cdr of VALUE.
The returned list is suitable for concatenating with an existing
alist, via nconc.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/assoc.el.gz
(defun aelement (key value)
"Make a list of a cons cell containing car of KEY and cdr of VALUE.
The returned list is suitable for concatenating with an existing
alist, via `nconc'."
(list (cons key value)))