diff options
Diffstat (limited to 'lisp/eshell')
-rw-r--r-- | lisp/eshell/esh-util.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el index 163577f5d08..6abb2127e7b 100644 --- a/lisp/eshell/esh-util.el +++ b/lisp/eshell/esh-util.el @@ -200,7 +200,7 @@ doubling it up." (defun eshell-convertible-to-number-p (string) "Return non-nil if STRING can be converted to a number. -If `eshell-convert-numeric-aguments', always return nil." +If `eshell-convert-numeric-arguments', always return nil." (and eshell-convert-numeric-arguments (string-match (concat "\\`\\s-*" eshell-number-regexp "\\s-*\\'") @@ -209,7 +209,7 @@ If `eshell-convert-numeric-aguments', always return nil." (defun eshell-convert-to-number (string) "Try to convert STRING to a number. If STRING doesn't look like a number (or -`eshell-convert-numeric-aguments' is nil), just return STRING +`eshell-convert-numeric-arguments' is nil), just return STRING unchanged." (if (eshell-convertible-to-number-p string) (string-to-number string) @@ -224,7 +224,7 @@ trailing newlines removed. Otherwise, this behaves as follows: * Split multiline strings by line. -* If `eshell-convert-numeric-aguments' is non-nil and every line +* If `eshell-convert-numeric-arguments' is non-nil and every line of output looks like a number, convert them to numbers." (cond ((not (stringp string)) |