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
(defsubst tramp-string-empty-or-nil-p (string)
  "Check whether STRING is empty or nil."
  (or (null string) (string= string "")))