diff options
Diffstat (limited to 'lisp/eshell')
| -rw-r--r-- | lisp/eshell/em-ls.el | 2 | ||||
| -rw-r--r-- | lisp/eshell/esh-util.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/eshell/em-ls.el b/lisp/eshell/em-ls.el index faba9088ecd..4ddf8862618 100644 --- a/lisp/eshell/em-ls.el +++ b/lisp/eshell/em-ls.el | |||
| @@ -490,7 +490,7 @@ whose cdr is the list of file attributes." | |||
| 490 | " " (format-time-string | 490 | " " (format-time-string |
| 491 | (concat | 491 | (concat |
| 492 | eshell-ls-date-format " " | 492 | eshell-ls-date-format " " |
| 493 | (if (= (nth 5 (decode-time (current-time))) | 493 | (if (= (nth 5 (decode-time)) |
| 494 | (nth 5 (decode-time | 494 | (nth 5 (decode-time |
| 495 | (nth (cond | 495 | (nth (cond |
| 496 | ((eq sort-method 'by-atime) 4) | 496 | ((eq sort-method 'by-atime) 4) |
diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el index cd73c0afa75..53f642510f2 100644 --- a/lisp/eshell/esh-util.el +++ b/lisp/eshell/esh-util.el | |||
| @@ -653,7 +653,7 @@ If NOSORT is non-nil, the list is not sorted--its order is unpredictable. | |||
| 653 | (match-string 6)))) | 653 | (match-string 6)))) |
| 654 | (if (nth 0 moment) | 654 | (if (nth 0 moment) |
| 655 | (setcar (nthcdr 5 moment) | 655 | (setcar (nthcdr 5 moment) |
| 656 | (nth 5 (decode-time (current-time)))) | 656 | (nth 5 (decode-time))) |
| 657 | (setcar (nthcdr 0 moment) 0) | 657 | (setcar (nthcdr 0 moment) 0) |
| 658 | (setcar (nthcdr 1 moment) 0) | 658 | (setcar (nthcdr 1 moment) 0) |
| 659 | (setcar (nthcdr 2 moment) 0)) | 659 | (setcar (nthcdr 2 moment) 0)) |