diff options
| author | Eli Zaretskii | 2024-09-07 12:41:29 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2024-09-07 12:41:29 +0300 |
| commit | b420e149b1ebc41dd183ab460930d78321e2e339 (patch) | |
| tree | 7cffb3d503012953521769f9d936208198091d59 | |
| parent | e1304e9b1bbb62ff3e3680c84bd1fad4922b41eb (diff) | |
| download | emacs-b420e149b1ebc41dd183ab460930d78321e2e339.tar.gz emacs-b420e149b1ebc41dd183ab460930d78321e2e339.zip | |
Fix a typo in ediff-init.el
* lisp/vc/ediff-init.el (ediff-nonempty-string-p): Fix typo.
Reported by Jurgen De Backer
<jurgen.de-backer.ext@eurocontrol.int> (bug#73042).
| -rw-r--r-- | lisp/vc/ediff-init.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 1451 | (ediff-abbreviate-file-name (file-name-directory dir)))) | 1451 | (ediff-abbreviate-file-name (file-name-directory dir)))) |
| 1452 | 1452 | ||
| 1453 | (defsubst ediff-nonempty-string-p (string) | 1453 | (defsubst ediff-nonempty-string-p (string) |
| 1454 | (and (stringp string) (string-empty-p string))) | 1454 | (and (stringp string) (not (string-empty-p string)))) |
| 1455 | 1455 | ||
| 1456 | (defun ediff-abbrev-jobname (jobname) | 1456 | (defun ediff-abbrev-jobname (jobname) |
| 1457 | (cond ((eq jobname 'ediff-directories) | 1457 | (cond ((eq jobname 'ediff-directories) |