Function: c-strip-conses
c-strip-conses is a byte-compiled function defined in cc-engine.el.gz.
Signature
(c-strip-conses LISZT)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-engine.el.gz
(defun c-strip-conses (liszt)
;; Make a copy of the list LISZT, removing conses from the copy. Return the
;; result.
(let ((ptr liszt) new)
(while ptr
(if (atom (car ptr))
(push (car ptr) new))
(setq ptr (cdr ptr)))
(nreverse new)))