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 in a string when CHAR doesn't have "word" syntax, nil otherwise. CHAR must be a character.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
(defun ispell--\\w-filter (char)
"Return CHAR in a string when CHAR doesn't have \"word\" syntax,
nil otherwise. CHAR must be a character."
(let ((str (string char)))
(and
(not (string-match "\\w" str))
str)))