Function: artist-funcall
artist-funcall is a macro defined in artist.el.gz.
Signature
(artist-funcall FN &rest ARGS)
Documentation
Call function FN with ARGS, if FN is not nil.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
;;
;; Utilities
;;
;; Macro that won't funcall the function if it is nil.
;;
(defmacro artist-funcall (fn &rest args)
"Call function FN with ARGS, if FN is not nil."
`(if ,fn (funcall ,fn ,@args)))