From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.devel Subject: RE: feature request: indicator of minibuffer-recursion depth Date: Sun, 19 Nov 2006 18:22:38 -0800 Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1163989420 20944 80.91.229.2 (20 Nov 2006 02:23:40 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 20 Nov 2006 02:23:40 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Nov 20 03:23:38 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Glyor-00083o-4Z for ged-emacs-devel@m.gmane.org; Mon, 20 Nov 2006 03:23:37 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Glyoq-0005WX-7O for ged-emacs-devel@m.gmane.org; Sun, 19 Nov 2006 21:23:36 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Glyod-0005Vj-3t for emacs-devel@gnu.org; Sun, 19 Nov 2006 21:23:23 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Glyoa-0005V9-CW for emacs-devel@gnu.org; Sun, 19 Nov 2006 21:23:22 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Glyoa-0005V6-9w for emacs-devel@gnu.org; Sun, 19 Nov 2006 21:23:20 -0500 Original-Received: from [148.87.113.118] (helo=rgminet01.oracle.com) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1Glyoa-0002Ms-5j for emacs-devel@gnu.org; Sun, 19 Nov 2006 21:23:20 -0500 Original-Received: from rgmgw1.us.oracle.com (rgmgw1.us.oracle.com [138.1.186.110]) by rgminet01.oracle.com (Switch-3.2.4/Switch-3.1.6) with ESMTP id kAK2NHtM001479 for ; Sun, 19 Nov 2006 19:23:17 -0700 Original-Received: from rcsmt250.oracle.com (rcsmt250.oracle.com [148.87.90.195]) by rgmgw1.us.oracle.com (Switch-3.2.4/Switch-3.1.7) with ESMTP id kAK1kSAm022300 for ; Sun, 19 Nov 2006 19:23:17 -0700 Original-Received: from dhcp-amer-whq-csvpn-gw3-141-144-81-12.vpn.oracle.com by rcsmt251.oracle.com with ESMTP id 2217628891163989359; Sun, 19 Nov 2006 19:22:39 -0700 Original-To: X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 In-reply-to: Importance: Normal X-Whitelist: TRUE X-Whitelist: TRUE X-Brightmail-Tracker: AAAAAQAAAAI= 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:62523 Archived-At: > No. As far as I know, it has not been committed. OK, so I guess we're back to hoping for it to be added to a later = release. Until that happens, I've uploaded a trivial mb-depth.el tweak to Emacs = Wiki (mb-depth+.el) that lets you define the format and face. It won't = be useful or needed, once the C code is committed. > I pointed it out because it is quite small and seems better than > having an elisp package just for this. Yes. Looking forward to it. > Very good, in any case. And I'm glad to see that the format=20 > string is a user variable (`minibuffer-depth-indicator'). I don't=20 > see a user-definable face, but perhaps no face is used. >=20 > You can always do, as I do: > (defface my-minibuffer-depth-face ...) > (setq minibuffer-depth-indicator > (propertize "[%d] " 'face 'my-minibuffer-depth-face))) Yes, good. And it's good that no highlighting is hard-coded in the C = version, so one is not obliged to add a face definition just to get rid = of the highlighting.