From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: feedback on customize -- apropos-groups et al Date: Mon, 11 Oct 2004 12:45:16 -0400 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: References: <020601c4aefd$8de795a0$0200a8c0@sedrcw11488> Reply-To: rms@gnu.org NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1097513181 16837 80.91.229.6 (11 Oct 2004 16:46:21 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 11 Oct 2004 16:46:21 +0000 (UTC) Cc: drew.adams@oracle.com, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 11 18:46:13 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CH3JN-0007QR-00 for ; Mon, 11 Oct 2004 18:46:13 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CH3QK-0003wO-B2 for ged-emacs-devel@m.gmane.org; Mon, 11 Oct 2004 12:53:24 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CH3PZ-0003bZ-J6 for emacs-devel@gnu.org; Mon, 11 Oct 2004 12:52:37 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CH3PY-0003au-55 for emacs-devel@gnu.org; Mon, 11 Oct 2004 12:52:36 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CH3PX-0003aZ-VI for emacs-devel@gnu.org; Mon, 11 Oct 2004 12:52:35 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CH3IS-00067m-OC for emacs-devel@gnu.org; Mon, 11 Oct 2004 12:45:16 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1CH3IS-0000ow-Ck; Mon, 11 Oct 2004 12:45:16 -0400 Original-To: "Lennart Borgman" In-reply-to: <020601c4aefd$8de795a0$0200a8c0@sedrcw11488> (lennart.borgman.073@student.lu.se) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:28237 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:28237 In many surveys about web pages it is found that users mostly want web page links to look just like default links. This is blue underlined. Maybe this would be good for Emacs too? Does this change do what you suggest? What do people think of it? *** info.el 08 Sep 2004 11:41:08 -0400 1.401 --- info.el 11 Oct 2004 03:37:05 -0400 *************** *** 79,86 **** :group 'info) (defface info-xref ! '((((class color) (background light)) :foreground "blue") ! (((class color) (background dark)) :foreground "cyan") (t :underline t)) "Face for Info cross-references." :group 'info) --- 79,86 ---- :group 'info) (defface info-xref ! '((((class color) (background light)) :foreground "blue" :underline t) ! (((class color) (background dark)) :foreground "cyan" :underline t) (t :underline t)) "Face for Info cross-references." :group 'info) *************** *** 455,460 **** --- 455,461 ---- ;;;###autoload (add-hook 'same-window-regexps "\\*info\\*\\(\\|<[0-9]+>\\)") + ;;;###autoload (put 'info 'info-file "emacs") ;;;###autoload (defun info (&optional file buffer) "Enter Info, the documentation browser. *************** *** 1791,1796 **** --- 1792,1799 ---- "Build table of contents from menus of Info FILE and its subfiles." (if (equal file "dir") (error "Table of contents for Info directory is not supported yet")) + (if (equal file "history") + (error "Table of contents for history list is not meaningful")) (with-temp-buffer (let* ((default-directory (or (and (stringp file) (file-name-directory *************** *** 3258,3263 **** --- 3261,3267 ---- (car elt) elt)) (file (if (consp elt) (cdr elt) elt)) + (case-fold-search nil) (regexp (concat "\\`" (regexp-quote name) "\\(\\'\\|-\\)"))) (if (string-match regexp (symbol-name command))