From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Branham Subject: [PATCH] documentation fix Date: Tue, 31 Oct 2017 14:12:03 -0500 Message-ID: <87po93yvwc.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40092) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e9bxL-0000wH-5a for emacs-orgmode@gnu.org; Tue, 31 Oct 2017 15:12:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e9bxG-0005zn-6t for emacs-orgmode@gnu.org; Tue, 31 Oct 2017 15:12:11 -0400 Received: from mail-oi0-x234.google.com ([2607:f8b0:4003:c06::234]:43837) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e9bxG-0005yu-0k for emacs-orgmode@gnu.org; Tue, 31 Oct 2017 15:12:06 -0400 Received: by mail-oi0-x234.google.com with SMTP id c77so75909oig.0 for ; Tue, 31 Oct 2017 12:12:05 -0700 (PDT) Received: from earth (cpe-70-114-200-132.austin.res.rr.com. [70.114.200.132]) by smtp.gmail.com with ESMTPSA id v33sm979825ota.12.2017.10.31.12.12.03 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 31 Oct 2017 12:12:04 -0700 (PDT) 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" To: org-mode-email --=-=-= Content-Type: text/plain Hello, I tripped myself up by trying to set org-agenda-show-log instead of org-agenda-start-with-log, so hopefully this patch will help other people down the line. Alex --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-org-agenda-documentation-addition.patch >From 47e1c3a9cd66d73c01ec0b4072228c02abbe0450 Mon Sep 17 00:00:00 2001 From: Alex Branham Date: Tue, 31 Oct 2017 14:08:00 -0500 Subject: [PATCH] org-agenda: documentation addition * lisp/org-agenda.el: Add documentation to `org-agenda-show-log' --- lisp/org-agenda.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 750221e46..39761121a 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -2092,7 +2092,9 @@ evaluate to a string." (defvar org-agenda-follow-mode nil) (defvar org-agenda-entry-text-mode nil) (defvar org-agenda-clockreport-mode nil) -(defvar org-agenda-show-log nil) +(defvar org-agenda-show-log nil + "If non-nil, show the log in the agenda. +Do not set this directly; instead use `org-agenda-start-with-log-mode', which see.") (defvar org-agenda-redo-command nil) (defvar org-agenda-query-string nil) (defvar org-agenda-mode-hook nil -- 2.15.0 --=-=-=--