From e2a72baa3e96cddda9672e47b68454b62e469f6d Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 7 Sep 2024 12:41:29 +0300 Subject: [PATCH] Fix a typo in ediff-init.el * lisp/vc/ediff-init.el (ediff-nonempty-string-p): Fix typo. Reported by Jurgen De Backer (bug#73042). (cherry picked from commit b420e149b1ebc41dd183ab460930d78321e2e339) --- lisp/vc/ediff-init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/vc/ediff-init.el b/lisp/vc/ediff-init.el index 1b478d3f9b7..72dae9b678f 100644 --- a/lisp/vc/ediff-init.el +++ b/lisp/vc/ediff-init.el @@ -1451,7 +1451,7 @@ This default should work without changes." (ediff-abbreviate-file-name (file-name-directory dir)))) (defsubst ediff-nonempty-string-p (string) - (and (stringp string) (string-empty-p string))) + (and (stringp string) (not (string-empty-p string)))) (defun ediff-abbrev-jobname (jobname) (cond ((eq jobname 'ediff-directories) -- 2.39.5