Function: tramp-string-empty-or-nil-p
tramp-string-empty-or-nil-p is a byte-compiled function defined in
tramp.el.gz.
Signature
(tramp-string-empty-or-nil-p STRING)
Documentation
Check whether STRING is empty or nil.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
;;;###tramp-autoload
(defsubst tramp-string-empty-or-nil-p (string)
"Check whether STRING is empty or nil."
;; (declare (tramp-suppress-trace t))
(or (null string) (string= string "")))