> Date: Thu, 5 Sep 2024 13:47:28 +
> From: Jurgen De Backer via "Bug reports for GNU Emacs,
> the Swiss army knife of text editors"
>
>
> In emacs 29.1-29.4 the negation is missing in function
> ediff-nonempty-string-p, see ediff-init.el:
>
> (defsubst ediff-nonempty-string-p (string)
>
Hi,
In emacs 29.1-29.4 the negation is missing in function
ediff-nonempty-string-p, see ediff-init.el:
(defsubst ediff-nonempty-string-p (string)
(and (stringp string) (string-empty-p string)))
should be
(defsubst ediff-nonempty-string-p (string)
(and (stringp string) (not (string-