On 09/11/2025 18:15, Ihor Radchenko wrote:
    (defun org-latex-list-or-null-p (object)
      "Return non-nil when `object' is a list or nil"
      (or (null object)
          (listp object)))

A simpler name like org-list-or-null-p would make more sense. It is a
very generic predicate, not really linked to latex.

Is it some kind of optimizing?

    (listp '()) ; => t

(info "(elisp) List-related Predicates")

Reply via email to