From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ryo TAKAISHI Subject: [PATCH] fix bug: org-ascii--unique-links don't call org-element-map with correct number of arguments Date: Mon, 14 Oct 2013 20:42:36 +0900 Message-ID: <1381750956-91150-1-git-send-email-ryo.takaishi.0@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55857) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVgY0-0001ZT-P7 for emacs-orgmode@gnu.org; Mon, 14 Oct 2013 07:43:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VVgXs-0000Dx-85 for emacs-orgmode@gnu.org; Mon, 14 Oct 2013 07:42:52 -0400 Received: from mail-pd0-x22a.google.com ([2607:f8b0:400e:c02::22a]:49628) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVgXr-0000Dn-W5 for emacs-orgmode@gnu.org; Mon, 14 Oct 2013 07:42:44 -0400 Received: by mail-pd0-f170.google.com with SMTP id x10so7308257pdj.1 for ; Mon, 14 Oct 2013 04:42:42 -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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Cc: Ryo TAKAISHI * lisp/ox-ascii.el: org-ascii--unique-links call org-element-map with correct number of arguments. --- lisp/ox-ascii.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-ascii.el b/lisp/ox-ascii.el index e0a3fa9..7ad0ee1 100644 --- a/lisp/ox-ascii.el +++ b/lisp/ox-ascii.el @@ -812,7 +812,7 @@ is a plist used as a communication channel." (or (org-export-get-parent-headline element) element)))) ;; Get all links in HEADLINE. (org-element-map headline 'link - (lambda (l) (funcall unique-link-p l)) info nil nil t))) + (lambda (l) (funcall unique-link-p l)) info nil t))) (defun org-ascii--describe-links (links width info) "Return a string describing a list of links. -- 1.7.9.6 (Apple Git-31.1)