From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Daniel Clemente" Subject: =?UTF-8?B?UmU6ICBSZTogcmVxdWVzdDogZmFjZSBmb3Ig4oCeLi4u4oCcIGF0?= =?UTF-8?B?IGNvbGxhcHNlZCBzZWN0aW9ucw==?= Date: Sun, 26 Aug 2007 23:14:37 +0200 Message-ID: References: <876432gh8k.fsf@baldur.tsdh.de> Mime-Version: 1.0 Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IPPRR-0002uT-CO for emacs-orgmode@gnu.org; Sun, 26 Aug 2007 17:14:41 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IPPRP-0002uH-TR for emacs-orgmode@gnu.org; Sun, 26 Aug 2007 17:14:41 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IPPRP-0002uE-Qs for emacs-orgmode@gnu.org; Sun, 26 Aug 2007 17:14:39 -0400 Received: from mu-out-0910.google.com ([209.85.134.190]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IPPRO-0007jm-Uw for emacs-orgmode@gnu.org; Sun, 26 Aug 2007 17:14:39 -0400 Received: by mu-out-0910.google.com with SMTP id g7so1602745muf for ; Sun, 26 Aug 2007 14:14:38 -0700 (PDT) In-Reply-To: <876432gh8k.fsf@baldur.tsdh.de> Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Tassilo Horn Cc: emacs-orgmode@gnu.org Hi, > > I have this in my emacs: > > ,---- > | ;;; Making fold markers ("...") more visible > | > | (defface selective-display > | '((default :background "lightgrey") > | (((supports :underline "red")) :underline "red")) > | "Face used for fold markers like ...") > | > | (unless standard-display-table > | (setq standard-display-table (make-display-table))) > | > | (set-display-table-slot standard-display-table 'selective-display > | (vconcat (mapcar > | (lambda (c) > | (make-glyph-code c > 'selective-display)) > | "..."))) > `---- > Wow, that seems a very low-level solution, but it works. I think it would be better if org-mode would set the =84..." directly with another face. Thanks for your instructive hack, Daniel