Function: gnus-string-or
gnus-string-or is a macro defined in gnus.el.gz.
Signature
(gnus-string-or &rest STRINGS)
Documentation
Return the first element of STRINGS that is a non-blank string.
STRINGS will be evaluated in normal or order.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(defmacro gnus-string-or (&rest strings)
"Return the first element of STRINGS that is a non-blank string.
STRINGS will be evaluated in normal `or' order."
`(gnus-string-or-1 (list ,@strings)))