Function: ispell-non-empty-string

ispell-non-empty-string is a byte-compiled function defined in ispell.el.gz.

Signature

(ispell-non-empty-string STRING)

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
(defun ispell-non-empty-string (string)
  (if (or (not string) (string-equal string ""))
      regexp-unmatchable
    (regexp-quote string)))