emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] rename woman-always-choose-first-hit to woman-auto-first-match,


From: Eric Hanchrow
Subject: [PATCH] rename woman-always-choose-first-hit to woman-auto-first-match, and make first line of docstring stand on its own.
Date: Tue, 10 Mar 2009 11:28:55 -0700

---
 lisp/woman.el |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/lisp/woman.el b/lisp/woman.el
index a459f7c..c0512cf 100644
--- a/lisp/woman.el
+++ b/lisp/woman.el
@@ -654,11 +654,10 @@ of `woman-expand-locale' on `woman-locale' added, where 
they exist."
         ;; Non-locale-specific has lowest precedence.
         (add-to-list 'lst elem)))))
 
-(defcustom woman-always-choose-first-hit nil
-  "If t, and we find more than one file for the given topic,
-  simply return the first topic, without prompting.  This is
-convenient if you have two sets of man pages for one program, and
-always want to look at just one of them."
+(defcustom woman-auto-first-match nil
+  "If t, always return first file found.
+This is convenient if you have two sets of man pages for one
+program, and always want to look at just one of them."
   :type 'boolean
   :version "23.1"                    ; added woman-manpath-add-locales
   :group 'woman-interface
@@ -1351,7 +1350,7 @@ cache to be re-read."
       (cond
        ((null files) nil)              ; no file found for topic.
        ((null (cdr files)) (car (car files))) ; only 1 file for topic.
-       (woman-always-choose-first-hit (car (car files))) ; user asked to never 
be prompted
+       (woman-auto-first-match (car (car files))) ; user asked to never be 
prompted
        (t
        ;; Multiple files for topic, so must select 1.
        ;; Unread the command event (TAB = ?\t = 9) that runs the command
-- 
1.6.2.rc1.20.g8c5b





reply via email to

[Prev in Thread] Current Thread [Next in Thread]