all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH]     (woman-always-choose-first-hit): New defcustom.
@ 2009-03-10  0:12 Eric Hanchrow
  2009-03-10 18:20 ` Richard M Stallman
  0 siblings, 1 reply; 11+ messages in thread
From: Eric Hanchrow @ 2009-03-10  0:12 UTC (permalink / raw)
  To: emacs-devel; +Cc: Eric Hanchrow

From: Eric Hanchrow <erich@cozi.com>

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

diff --git a/lisp/woman.el b/lisp/woman.el
index b7b856c..a459f7c 100644
--- a/lisp/woman.el
+++ b/lisp/woman.el
@@ -654,6 +654,16 @@ 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."
+  :type 'boolean
+  :version "23.1"                    ; added woman-manpath-add-locales
+  :group 'woman-interface
+  :link '(function-link woman-file-name))
+
 (defcustom woman-manpath
   ;; Locales could also be added in woman-expand-directory-path.
   (or (woman-manpath-add-locales
@@ -1341,6 +1351,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
        (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





^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2009-03-16  9:42 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-10  0:12 [PATCH] (woman-always-choose-first-hit): New defcustom Eric Hanchrow
2009-03-10 18:20 ` Richard M Stallman
2009-03-11  1:32   ` Stefan Monnier
2009-03-11 16:57     ` Richard M Stallman
2009-03-11 17:03       ` Drew Adams
2009-03-11 23:08         ` xahlee
2009-03-12  4:13           ` Eli Zaretskii
2009-03-14 21:21             ` xahlee
2009-03-14 22:19               ` Eli Zaretskii
2009-03-15 14:08                 ` tomas
2009-03-16  9:42               ` Richard M Stallman

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.