From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: ">>" -> "> " when selecting entries in the agenda view Date: Tue, 08 Sep 2009 07:31:32 +0800 Message-ID: <87ljkq2uy3.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MktIz-0004Ng-2v for emacs-orgmode@gnu.org; Tue, 08 Sep 2009 01:31:49 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MktIu-0004IU-Lx for emacs-orgmode@gnu.org; Tue, 08 Sep 2009 01:31:48 -0400 Received: from [199.232.76.173] (port=58936 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MktIu-0004IB-Es for emacs-orgmode@gnu.org; Tue, 08 Sep 2009 01:31:44 -0400 Received: from mail-fx0-f226.google.com ([209.85.220.226]:54179) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MktIu-00048U-2W for emacs-orgmode@gnu.org; Tue, 08 Sep 2009 01:31:44 -0400 Received: by fxm26 with SMTP id 26so2485131fxm.42 for ; Mon, 07 Sep 2009 22:31:42 -0700 (PDT) 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: emacs-orgmode@gnu.org --=-=-= Hi Carsten and all, when selecting entries in the agenda view, I find the ">>" prefix a bit heavy. I would like to replace it with a simple "> ". Objections? Other suggestions? --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=org-agenda.el.patch diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 60cb113..04b5514 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -6559,7 +6559,7 @@ This is a command that has to be installed in `calendar-mode-map'." (unless m (error "Nothing to mark at point")) (push m org-agenda-bulk-marked-entries) (setq ov (org-make-overlay (point-at-bol) (+ 2 (point-at-bol)))) - (org-overlay-display ov ">>" + (org-overlay-display ov "> " (org-get-todo-face "TODO") 'evaporate) (org-overlay-put ov 'type 'org-marked-entry-overlay)) --=-=-= -- Bastien --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --=-=-=--