summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Perrey <hanno@hoowl.se>2021-09-12 17:22:25 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2021-09-12 17:22:51 +0200
commit8f3199788beceb6c513809a11e6f99b66b8feb5c (patch)
tree7e66367c781f8970a0ebd9c898b476faafd3364f
parent914d4523c3f0455dfd071d54b776a1db278aac4c (diff)
downloademacs-8f3199788beceb6c513809a11e6f99b66b8feb5c.tar.gz
; * 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
-rw-r--r--lisp/eshell/em-unix.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/em-unix.el b/lisp/eshell/em-unix.el
index 7e48a9c7578..5b400c74fca 100644
--- a/lisp/eshell/em-unix.el
+++ b/lisp/eshell/em-unix.el
@@ -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)))