emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] [PATCH] fix bug: org-ascii--unique-links don't call org-element-map


From: Ryo TAKAISHI
Subject: [O] [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

* 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)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]