Variable: dictionary-read-dictionary-function
dictionary-read-dictionary-function is a customizable variable defined
in dictionary.el.gz.
Value
dictionary-read-dictionary-default
Documentation
Function to use for prompting for a dictionary.
It is called with no arguments and must return a string.
This variable was added, or its default value changed, in Emacs 30.1.
Probably introduced at or before Emacs version 30.1.
Source Code
;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
(defcustom dictionary-read-dictionary-function
#'dictionary-read-dictionary-default
"Function to use for prompting for a dictionary.
It is called with no arguments and must return a string."
:type '(choice (const :tag "Default" dictionary-read-dictionary-default)
(const :tag "Choose among server-provided dictionaries"
dictionary-completing-read-dictionary)
(function :tag "Custom function"))
:version "30.1")