Variable: help-uni-confusables
help-uni-confusables is a variable defined in help.el.gz.
Value
((8216 . "'")
(8217 . "'")
(8219 . "'")
(8220 . "\"")
(8221 . "\"")
(8223 . "\"")
(12318 . "\"")
(65282 . "'")
(65287 . "'"))
Documentation
An alist of confusable characters to give hints about.
Each alist element is of the form (CHAR . REPLACEMENT), where
CHAR is the potentially confusable character, and REPLACEMENT is
the suggested string to use instead. See
help-uni-confusable-suggestions.
Source Code
;; Defined in /usr/src/emacs/lisp/help.el.gz
;; Just some quote-like characters for now. TODO: generate this stuff
;; from official Unicode data.
(defconst help-uni-confusables
'((#x2018 . "'") ;; LEFT SINGLE QUOTATION MARK
(#x2019 . "'") ;; RIGHT SINGLE QUOTATION MARK
(#x201B . "'") ;; SINGLE HIGH-REVERSED-9 QUOTATION MARK
(#x201C . "\"") ;; LEFT DOUBLE QUOTATION MARK
(#x201D . "\"") ;; RIGHT DOUBLE QUOTATION MARK
(#x201F . "\"") ;; DOUBLE HIGH-REVERSED-9 QUOTATION MARK
(#x301E . "\"") ;; DOUBLE PRIME QUOTATION MARK
(#xFF02 . "'") ;; FULLWIDTH QUOTATION MARK
(#xFF07 . "'") ;; FULLWIDTH APOSTROPHE
)
"An alist of confusable characters to give hints about.
Each alist element is of the form (CHAR . REPLACEMENT), where
CHAR is the potentially confusable character, and REPLACEMENT is
the suggested string to use instead. See
`help-uni-confusable-suggestions'.")