1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

; * lisp/eshell/em-unix.el (nil-blank-string): Doc fix

* lisp/eshell/em-unix.el (nil-blank-string): Fix doc string
(bug#50549).

Copyright-paperwork-exempt: yes
This commit is contained in:
Hanno Perrey 2021-09-12 17:22:25 +02:00 committed by Lars Ingebrigtsen
parent 914d4523c3
commit 8f3199788b

View File

@ -968,7 +968,7 @@ Show wall-clock time elapsed during execution of COMMAND.")
(set-window-configuration eshell-diff-window-config)))
(defun nil-blank-string (string)
"Return STRING, or nil if STRING contains only non-blank characters."
"Return STRING, or nil if STRING contains only blank characters."
(cond
((string-match "[^[:blank:]]" string) string)
(nil)))