Function: artist-get-first-non-nil-op
artist-get-first-non-nil-op is a byte-compiled function defined in
artist.el.gz.
Signature
(artist-get-first-non-nil-op OP-LIST)
Documentation
Find the first non-nil draw operation in OP-LIST.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-get-first-non-nil-op (op-list)
"Find the first non-nil draw operation in OP-LIST."
(or (car (car op-list)) (artist-get-first-non-nil-op (cdr op-list))))