branch: externals/org commit 55db64e9d07bd9f52cb070f521a3329221234f70 Author: Ihor Radchenko <yanta...@posteo.net> Commit: Ihor Radchenko <yanta...@posteo.net>
org-element--properties-mapc: Fix typo * lisp/org-element-ast.el (org-element--properties-mapc): Fix missing parenthesis. Reported-by: Max Nikulin <maniku...@gmail.com> Link: https://orgmode.org/list/uhb60m$10d5$1...@ciao.gmane.io --- lisp/org-element-ast.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-element-ast.el b/lisp/org-element-ast.el index c4c6d1c6f4..f07a5f9350 100644 --- a/lisp/org-element-ast.el +++ b/lisp/org-element-ast.el @@ -607,7 +607,7 @@ Otherwise, return nil." node)))) (when collect (unless (eq rtn (aref parray (cadr standard-idxs))) - (if (and (eq collect 'set) (not eq rtn 'org-element-ast--nil)) + (if (and (eq collect 'set) (not (eq rtn 'org-element-ast--nil))) (setf (aref parray (cadr standard-idxs)) rtn) (push rtn acc)))) (setq standard-idxs (cddr standard-idxs))))))