diff options
-rw-r--r-- | lisp/eshell/em-unix.el | 2 |
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))) |