Variable: read-char-by-name-sort

read-char-by-name-sort is a customizable variable defined in mule-cmds.el.gz.

Value

nil

Documentation

How to sort characters for read-char-by-name completion.

Defines the sorting order either by character names or their codepoints.

This variable was added, or its default value changed, in Emacs 28.1.

Probably introduced at or before Emacs version 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/international/mule-cmds.el.gz
(defcustom read-char-by-name-sort nil
  "How to sort characters for `read-char-by-name' completion.
Defines the sorting order either by character names or their codepoints."
  :type '(choice
          (const :tag "Sort by character names" nil)
          (const :tag "Sort by character codepoints" code))
  :group 'mule
  :version "28.1")