Function: ispell--\w-filter

ispell--\w-filter is a byte-compiled function defined in ispell.el.gz.

Signature

(ispell--\\w-filter CHAR)

Documentation

Return CHAR as a string when CHAR doesn't have "word" syntax.

CHAR must be a valid character. Return nil otherwise.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
(defun ispell--\\w-filter (char)
  "Return CHAR as a string when CHAR doesn't have \"word\" syntax.
CHAR must be a valid character.  Return nil otherwise."
  (let ((str (string char)))
    (and
     (not (string-match "\\w" str))
     str)))