Variable: dictionary-coding-systems-for-dictionaries
dictionary-coding-systems-for-dictionaries is a customizable variable
defined in dictionary.el.gz.
Value
(("mueller" . koi8-r))
Documentation
Mapping of dictionaries to coding systems.
Each entry in this list defines the coding system to be used for that dictionary. The default coding system for all other dictionaries is utf-8
This variable was added, or its default value changed, in Emacs 28.1.
Source Code
;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
;; Define only when coding-system-list is available
(defcustom dictionary-coding-systems-for-dictionaries
'( ("mueller" . koi8-r))
"Mapping of dictionaries to coding systems.
Each entry in this list defines the coding system to be used for that
dictionary. The default coding system for all other dictionaries
is utf-8"
:group 'dictionary
:type `(repeat (cons :tag "Association"
(string :tag "Dictionary name")
(choice :tag "Coding system"
:value 'utf-8
,@(mapcar (lambda (x) (list 'const x))
(coding-system-list))
)))
:version "28.1")