Function: which-key-description-order

which-key-description-order is a byte-compiled function defined in which-key.el.gz.

Signature

(which-key-description-order ACONS BCONS)

Documentation

Order descriptions of A and B.

Uses string-lessp after applying lowercase.

Source Code

;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defsubst which-key-description-order (acons bcons)
  "Order descriptions of A and B.
Uses `string-lessp' after applying lowercase."
  (string-lessp (downcase (cdr acons)) (downcase (cdr bcons))))