diff options
Diffstat (limited to 'lisp/eshell')
| -rw-r--r-- | lisp/eshell/esh-arg.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/esh-arg.el b/lisp/eshell/esh-arg.el index 590c22f5864..e2292793025 100644 --- a/lisp/eshell/esh-arg.el +++ b/lisp/eshell/esh-arg.el | |||
| @@ -53,7 +53,7 @@ yield the values intended." | |||
| 53 | (goto-char (match-end 0)) | 53 | (goto-char (match-end 0)) |
| 54 | (let ((str (match-string 0))) | 54 | (let ((str (match-string 0))) |
| 55 | (if (> (length str) 0) | 55 | (if (> (length str) 0) |
| 56 | (add-text-properties 0 1 '(number t) str)) | 56 | (add-text-properties 0 (length str) '(number t) str)) |
| 57 | str)))) | 57 | str)))) |
| 58 | 58 | ||
| 59 | ;; parse any non-special characters, based on the current context | 59 | ;; parse any non-special characters, based on the current context |