Re: [PATCH] Make predicates non-interactive

2023-03-23 Thread Max Nikulin
On 23/03/2023 11:22, Aaron L. Zeng wrote: +++ b/lisp/org.el ... @@ -15475,7 +15474,6 @@ If Org mode thinks that point is actually inside an embedded LaTeX environment, return t when the environment is math or let `texmathp' do its job otherwise. `\\[org-cdlatex-mode-map]'" - (interactive

Re: [PATCH] Make predicates non-interactive

2023-03-23 Thread Ihor Radchenko
"Aaron L. Zeng" writes: > Predicates like `org-first-sibling-p' are no use when called > interactively, and should not appear in the M-x prompt. > > TINYCHANGE > --- > lisp/org.el | 3 --- > 1 file changed, 3 deletions(-) Thanks! Applied, onto main. I added appropriate CHANGELOG entries to the

[PATCH] Make predicates non-interactive

2023-03-22 Thread Aaron L. Zeng
Predicates like `org-first-sibling-p' are no use when called interactively, and should not appear in the M-x prompt. TINYCHANGE --- lisp/org.el | 3 --- 1 file changed, 3 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 23cb6012d..20e6ea6d9 100644 --- a/lisp/org.el +++ b/lisp/org.el @@