Variable: latin1-display-ucs-per-lynx
latin1-display-ucs-per-lynx is a customizable variable defined in
latin1-disp.el.gz.
Value
nil
Documentation
Set up Latin-1/ASCII display for Unicode characters.
This uses the transliterations of the Lynx browser. The display isn't changed if the display can render Unicode characters.
Setting this variable directly does not take effect;
use either M-x customize (customize) or the command latin1-display-ucs-per-lynx(var)/latin1-display-ucs-per-lynx(fun).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/international/latin1-disp.el.gz
;;;###autoload
(defcustom latin1-display-ucs-per-lynx nil ;FIXME: Isn't this a minor mode?
"Set up Latin-1/ASCII display for Unicode characters.
This uses the transliterations of the Lynx browser. The display isn't
changed if the display can render Unicode characters.
Setting this variable directly does not take effect;
use either \\[customize] or the command `latin1-display-ucs-per-lynx'."
:group 'latin1-display
:type 'boolean
:require 'latin1-disp
:initialize #'custom-initialize-default
:set (lambda (_symbol value)
(if value
(latin1-display-ucs-per-lynx 1)
(latin1-display-ucs-per-lynx -1))))