From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vladimir Lomov Subject: [BUG] A typo introduced in '6abc114f188267e4b804a3eca8794900eee66db0' Date: Mon, 1 Jul 2013 12:55:24 +0900 Message-ID: <20130701035524.GA693@smoon> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="bp/iNruPH9dso1Pn" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33340) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UtVDA-0003Fg-Sq for emacs-orgmode@gnu.org; Sun, 30 Jun 2013 23:55:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UtVD9-0002jk-Gj for emacs-orgmode@gnu.org; Sun, 30 Jun 2013 23:55:32 -0400 Received: from mail-la0-x22e.google.com ([2a00:1450:4010:c03::22e]:40022) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UtVD9-0002j9-AN for emacs-orgmode@gnu.org; Sun, 30 Jun 2013 23:55:31 -0400 Received: by mail-la0-f46.google.com with SMTP id eg20so3947421lab.33 for ; Sun, 30 Jun 2013 20:55:29 -0700 (PDT) Received: from smoon ([141.105.33.55]) by mx.google.com with ESMTPSA id x5sm6361191lbx.8.2013.06.30.20.55.26 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 30 Jun 2013 20:55:28 -0700 (PDT) Content-Disposition: inline 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: General discussions about Org-mode --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello, a typo introduced in commit '6abc114f188267e4b804a3eca8794900eee66db0' prevents `org-agenda.el' to compile into 'elc' (actually Emacs shows me an error which I don't understand). I compared `org-agenda.el' of '6abc114f188267e4b804a3eca8794900eee66db0' commit with previous commit and made small patch which fixes the problem. --- WBR, Vladimir Lomov -- There's nothing very mysterious about you, except that nobody really knows your origin, purpose, or destination. --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="org-agenda.el-patch" diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index b4f604b..04e80a3 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -3133,9 +3133,9 @@ before running the agenda command." (let (org-agenda-sticky) (if (> (length cmd-key) 2) (org-tags-view nil cmd-key) - (org-agenda nil cmd-key))) + (org-agenda nil cmd-key)))) (set-buffer org-agenda-buffer-name) - (princ (buffer-string)))) + (princ (buffer-string))) (defvar org-agenda-info nil) --bp/iNruPH9dso1Pn--