aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2006-03-24 13:28:23 +0000
committerKim F. Storm2006-03-24 13:28:23 +0000
commitf4517e516bff4013b84102bfe04700d257bd4e79 (patch)
tree1120dda804e96093a91a82df1b3c43fa6c6e9fcd
parent0ef4f79b477f3dba5f8ce0a9c7c85e2bbb6c4934 (diff)
downloademacs-f4517e516bff4013b84102bfe04700d257bd4e79.tar.gz
emacs-f4517e516bff4013b84102bfe04700d257bd4e79.zip
(apropos-synonyms): Add selection => region.
-rw-r--r--lisp/apropos.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el
index 3333981c5e5..b490b8173ba 100644
--- a/lisp/apropos.el
+++ b/lisp/apropos.el
@@ -168,7 +168,8 @@ If value is `verbose', the computed score is shown for each match."
168(defvar apropos-synonyms '( 168(defvar apropos-synonyms '(
169 ("find" "open" "edit") 169 ("find" "open" "edit")
170 ("kill" "cut") 170 ("kill" "cut")
171 ("yank" "paste")) 171 ("yank" "paste")
172 ("region" "selection"))
172 "List of synonyms known by apropos. 173 "List of synonyms known by apropos.
173Each element is a list of words where the first word is the standard emacs 174Each element is a list of words where the first word is the standard emacs
174term, and the rest of the words are alternative terms.") 175term, and the rest of the words are alternative terms.")