org-element--properties-mapc: Fix typo

* lisp/org-element-ast.el (org-element--properties-mapc): Fix missing
parenthesis.

Reported-by: Max Nikulin <manikulin@gmail.com>
Link: https://orgmode.org/list/uhb60m$10d5$1@ciao.gmane.io
This commit is contained in:
Ihor Radchenko 2023-10-25 16:47:53 +03:00
parent 2b15e789ae
commit 55db64e9d0
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
1 changed files with 1 additions and 1 deletions

View File

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