From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: [PATCH] Remove unecesssary invocations of org-mode in ox-publish Date: Tue, 29 Jul 2014 11:04:12 -0500 Message-ID: <87bns8nocj.fsf@fastmail.fm> References: <87mwbsn40z.fsf@fastmail.fm> <871tt4fggm.fsf@bzg.ath.cx> <87zjfsnsyf.fsf@fastmail.fm> <87silknquh.fsf@fastmail.fm> <87bns89ozs.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57781) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XC9tZ-0007F7-Jz for emacs-orgmode@gnu.org; Tue, 29 Jul 2014 12:05:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XC9tU-0002yC-0K for emacs-orgmode@gnu.org; Tue, 29 Jul 2014 12:04:57 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:43764) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XC9tT-0002y3-SN for emacs-orgmode@gnu.org; Tue, 29 Jul 2014 12:04:51 -0400 In-Reply-To: <87bns89ozs.fsf@bzg.ath.cx> (Bastien's message of "Tue, 29 Jul 2014 17:13:59 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Bastien Cc: Org Mode --=-=-= Content-Type: text/plain Bastien writes: > Hi Matt, > > Matt Lundin writes: > >> The documentation for org-agenda-inhibit-startup says that the default >> is t. However, the default is nil. >> >> ,---- >> | Inhibit startup when preparing agenda buffers. >> | When this variable is `t' (the default), the initialization of >> | the Org agenda buffers is inhibited: e.g. the visibility state >> | is not set, the tables are not re-aligned, etc. >> `---- > > Please go ahead for this too. Gladly! --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-Fix-docstring-of-org-agenda-inhibit-startup.patch >From 5b2ef2c660d8163199f45d4dbf58d33f3ec1f918 Mon Sep 17 00:00:00 2001 From: Matt Lundin Date: Tue, 29 Jul 2014 10:59:19 -0500 Subject: [PATCH] Fix docstring of org-agenda-inhibit-startup * lisp/org.el: org-agenda-inhibit-startup: fix docstring to reflect default value --- lisp/org.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 5c4b211..df13fff 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -17961,9 +17961,9 @@ This requires Emacs >= 24.1, build with imagemagick support." (defcustom org-agenda-inhibit-startup nil "Inhibit startup when preparing agenda buffers. -When this variable is `t' (the default), the initialization of -the Org agenda buffers is inhibited: e.g. the visibility state -is not set, the tables are not re-aligned, etc." +When this variable is `t', the initialization of the Org agenda +buffers is inhibited: e.g. the visibility state is not set, the +tables are not re-aligned, etc." :type 'boolean :version "24.3" :group 'org-agenda) -- 2.0.3 --=-=-=--