]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/eshell/em-unix.el (nil-blank-string): Doc fix
authorHanno Perrey <hanno@hoowl.se>
Sun, 12 Sep 2021 15:22:25 +0000 (17:22 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 12 Sep 2021 15:22:51 +0000 (17:22 +0200)
* lisp/eshell/em-unix.el (nil-blank-string): Fix doc string
(bug#50549).

Copyright-paperwork-exempt: yes

lisp/eshell/em-unix.el

index 7e48a9c7578f4e28fdc0f30f3634b6a879993d97..5b400c74fca9ae3ef681d98cbec4698db68f8e12 100644 (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)))