From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: [Accepted] Fix typo in agenda local variable Date: Fri, 15 Apr 2011 13:56:18 +0200 (CEST) Message-ID: <20110415115618.DFC60412C35@u016822.science.uva.nl> References: <1302732325-21162-1-git-send-email-bernt@norang.ca> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:42571) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAiBP-00079S-EA for emacs-orgmode@gnu.org; Fri, 15 Apr 2011 08:31:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QAiBK-0007LO-04 for emacs-orgmode@gnu.org; Fri, 15 Apr 2011 08:31:31 -0400 Received: from u016822.science.uva.nl ([146.50.39.34]:52998) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAiBJ-0007Ku-Op for emacs-orgmode@gnu.org; Fri, 15 Apr 2011 08:31:25 -0400 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: emacs-orgmode@gnu.org Patch 749 (http://patchwork.newartisans.com/patch/749/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C1302732325-21162-1-git-send-email-bernt%40norang.ca%3E Here is the original message containing the patch: > Content-Type: text/plain; charset="utf-8" > MIME-Version: 1.0 > Content-Transfer-Encoding: 7bit > Subject: [O] Fix typo in agenda local variable > Date: Thu, 14 Apr 2011 03:05:25 -0000 > From: Bernt Hansen > X-Patchwork-Id: 749 > Message-Id: <1302732325-21162-1-git-send-email-bernt@norang.ca> > To: emacs-orgmode@gnu.org > Cc: Bernt Hansen > > * lisp/org-agenda.el (org-agenda-filter-by-tag): Fix variable name typo > > maybe-reftresh -> maybe-refresh > > --- > This patch is available at git://git.norang.ca/org-mode.git fix-agenda-var-typo > > -Bernt > > lisp/org-agenda.el | 10 +++++----- > 1 files changed, 5 insertions(+), 5 deletions(-) > > diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el > index 5571838..321221d 100644 > --- a/lisp/org-agenda.el > +++ b/lisp/org-agenda.el > @@ -5905,7 +5905,7 @@ to switch to narrowing." > (effort-prompt "") > (inhibit-read-only t) > (current org-agenda-filter) > - maybe-reftresh a n tag) > + maybe-refresh a n tag) > (unless char > (message > "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow, [>= @@ -5952,12 +5952,12 @@ to switch to narrowing." > (push modifier org-agenda-filter)))) > (if (not (null org-agenda-filter)) > (org-agenda-filter-apply org-agenda-filter))) > - (setq maybe-reftresh t)) > + (setq maybe-refresh t)) > ((equal char ?/) > (org-agenda-filter-by-tag-show-all) > (when (get 'org-agenda-filter :preset-filter) > (org-agenda-filter-apply org-agenda-filter)) > - (setq maybe-reftresh t)) > + (setq maybe-refresh t)) > ((or (equal char ?\ ) > (setq a (rassoc char alist)) > (and (>= char ?0) (<= char ?9) > @@ -5974,9 +5974,9 @@ to switch to narrowing." > (cons (concat (if strip "-" "+") tag) > (if narrow current nil))) > (org-agenda-filter-apply org-agenda-filter) > - (setq maybe-reftresh t)) > + (setq maybe-refresh t)) > (t (error "Invalid tag selection character %c" char))) > - (when (and maybe-reftresh > + (when (and maybe-refresh > (eq org-agenda-clockreport-mode 'with-filter)) > (org-agenda-redo)))) > >