Variable: apropos-synonyms
apropos-synonyms is a variable defined in apropos.el.gz.
Value
(("find" "open" "edit") ("kill" "cut") ("yank" "paste")
("region" "selection"))
Documentation
List of synonyms known by apropos.
Each element is a list of words where the first word is the standard Emacs term, and the rest of the words are alternative terms.
Source Code
;; Defined in /usr/src/emacs/lisp/apropos.el.gz
(defvar apropos-synonyms '(
("find" "open" "edit")
("kill" "cut")
("yank" "paste")
("region" "selection"))
"List of synonyms known by apropos.
Each element is a list of words where the first word is the standard Emacs
term, and the rest of the words are alternative terms.")