# HG changeset patch # User Kevin Ryde # Date 1259189467 0 # Node ID e35ae171fed1ad4c4f2dd10c4af8ba27b0edfc21 # Parent 6f850f54181808be4a32cc7ba562d60f3884fe84 (man): completion-ignore-case t for friendliness and since man itself is case-insensitive on the command line. diff -r 6f850f541818 -r e35ae171fed1 lisp/man.el --- a/lisp/man.el Wed Nov 25 22:42:11 2009 +0000 +++ b/lisp/man.el Wed Nov 25 22:51:07 2009 +0000 @@ -799,6 +799,13 @@ `Man-switches' variable, which see." (interactive (list (let* ((default-entry (Man-default-man-entry)) + ;; ignore case because that's friendly for bizarre + ;; caps things like the X11 function names and because + ;; "man" itself is case-sensitive on the command line + ;; so you're accustomed not to bother about the case + ;; ("man -k" is case-insensitive similarly, so the + ;; table has everything available to complete) + (completion-ignore-case t) (input (completing-read (format "Manual entry%s" (if (string= default-entry "")