From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Yanking isearch to highlight-regexp Date: Sun, 29 Jun 2008 21:01:14 -0400 Message-ID: References: <4853F884.7000609@gmail.com> <7dbe73ed0806141442h342f8ff0u83863f3980a7e229@mail.gmail.com> <48545D78.8080103@gmail.com> <4854E536.8040407@gmail.com> <87k5gql900.fsf@jurta.org> <878wwp1an8.fsf@jurta.org> <871w2gi58m.fsf@jurta.org> <87d4m0c9md.fsf@jurta.org> <87wsk89byj.fsf@jurta.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1214787704 4988 80.91.229.12 (30 Jun 2008 01:01:44 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 30 Jun 2008 01:01:44 +0000 (UTC) Cc: David Koppelman , emacs-devel@gnu.org To: Juri Linkov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 30 03:02:29 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KD7mk-0004oI-I3 for ged-emacs-devel@m.gmane.org; Mon, 30 Jun 2008 03:02:27 +0200 Original-Received: from localhost ([127.0.0.1]:46873 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KD7lt-0006CB-6a for ged-emacs-devel@m.gmane.org; Sun, 29 Jun 2008 21:01:33 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KD7lp-0006C5-Hu for emacs-devel@gnu.org; Sun, 29 Jun 2008 21:01:29 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KD7ln-0006Bf-5O for emacs-devel@gnu.org; Sun, 29 Jun 2008 21:01:28 -0400 Original-Received: from [199.232.76.173] (port=42480 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KD7lm-0006Bc-Vz for emacs-devel@gnu.org; Sun, 29 Jun 2008 21:01:27 -0400 Original-Received: from 69-196-135-70.dsl.teksavvy.com ([69.196.135.70]:41118 helo=ceviche.home) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KD7lm-0006E6-9M for emacs-devel@gnu.org; Sun, 29 Jun 2008 21:01:26 -0400 Original-Received: by ceviche.home (Postfix, from userid 20848) id 2DE1EB4029; Sun, 29 Jun 2008 21:01:14 -0400 (EDT) In-Reply-To: <87wsk89byj.fsf@jurta.org> (Juri Linkov's message of "Sun, 29 Jun 2008 23:55:55 +0300") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 3) 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: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:100178 Archived-At: > The following patch creates a new variable `face-name-history' and > adds it to face-reading commands (most important is `read-face-name' > that is used by many other commands). OK. > *************** > *** 1227,1233 **** > this regular expression. When called interactively with a prefix > arg, prompt for a regular expression." > (interactive (list (and current-prefix-arg > ! (read-string "List faces matching regexp: ")))) > (let ((all-faces (zerop (length regexp))) > (frame (selected-frame)) > (max-length 0) > --- 1235,1241 ---- > this regular expression. When called interactively with a prefix > arg, prompt for a regular expression." > (interactive (list (and current-prefix-arg > ! (read-regexp "List faces matching regexp")))) > (let ((all-faces (zerop (length regexp))) > (frame (selected-frame)) > (max-length 0) This is part of the other patch, isn't it? Stefan