Function: string-empty-p

string-empty-p is a byte-compiled function defined in simple.el.gz.

Signature

(string-empty-p STRING)

Documentation

Check whether STRING is empty.

Other relevant functions are documented in the string group.

Probably introduced at or before Emacs version 24.4.

Shortdoc

;; string
(string-empty-p "")
    => t

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defsubst string-empty-p (string)
  "Check whether STRING is empty."
  (declare (pure t) (side-effect-free t))
  (string= string ""))