From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Masatake YAMATO Newsgroups: gmane.emacs.devel Subject: Re: Emphasize the character to be typed next in *Completions* Date: Wed, 24 Mar 2004 11:36:51 +0900 (JST) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <20040324.113651.212945602.jet@gyve.org> References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1080095889 26662 80.91.224.253 (24 Mar 2004 02:38:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 24 Mar 2004 02:38:09 +0000 (UTC) Cc: monnier@iro.umontreal.ca, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Wed Mar 24 03:38:00 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1B5yHI-0000Yl-00 for ; Wed, 24 Mar 2004 03:38:00 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1B5yHI-0001Cs-00 for ; Wed, 24 Mar 2004 03:38:00 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.30) id 1B5yHH-0000cR-Ov for emacs-devel@quimby.gnus.org; Tue, 23 Mar 2004 21:37:59 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.30) id 1B5yHA-0000aN-GZ for emacs-devel@gnu.org; Tue, 23 Mar 2004 21:37:52 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.30) id 1B5yGb-0008SZ-57 for emacs-devel@gnu.org; Tue, 23 Mar 2004 21:37:48 -0500 Original-Received: from [210.130.136.40] (helo=r-maa.spacetown.ne.jp) by monty-python.gnu.org with esmtp (Exim 4.30) id 1B5yGa-0008QQ-9b for emacs-devel@gnu.org; Tue, 23 Mar 2004 21:37:16 -0500 Original-Received: from localhost (h219-110-075-058.catv01.itscom.jp [219.110.75.58]) by r-maa.spacetown.ne.jp (8.11.6) with ESMTP id i2O2ajU25244; Wed, 24 Mar 2004 11:36:46 +0900 (JST) Original-To: storm@cua.dk In-Reply-To: X-Mailer: Mew version 4.0.62 on Emacs 21.3.50 / Mule 5.0 (SAKAKI) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:20828 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:20828 > > >> + (case completion-emphasis-region > > > Isn't `case' a CL-ism ? It shouldn't be used in simple.el ... > > > > Why not? It's a macro, so just add > > > > (eval-when-compile (require 'cl)) > > I know, but I had the impression that RMS didn't want cl-isms in the > "core" files... > > In any case, I don't see why we cannot just use cond instead of case. Ok. I will replace case with cond when I can install my patch. Is it ready to install? (completion-emphasis and completion-emphasis-region are now customizable.) To which group completion-emphasis and completion-emphasis-region members sholud be belonging ? BTW, I think it is good to provide `customize-face-under-the-next-mouse-click'. Even if one wants to customize a face, it is not easy to know the name of face from the display. Is there such function or a function useful to implement such function in emacs?