# HG changeset patch # User Glenn Morris # Date 1188696109 0 # Node ID d0a362a52471e583b227940b042bf2f3fde60e43 # Parent 3ba7ccb6989b45dd658645e39065f0034012a4a0 (eshell/time): Stringify and flatten the non-command arguments. diff -r 3ba7ccb6989b -r d0a362a52471 lisp/eshell/em-unix.el --- a/lisp/eshell/em-unix.el Sun Sep 02 01:20:31 2007 +0000 +++ b/lisp/eshell/em-unix.el Sun Sep 02 01:21:49 2007 +0000 @@ -959,7 +959,10 @@ (add-hook 'eshell-post-command-hook 'eshell-show-elapsed-time nil t) ;; after setting (throw 'eshell-replace-command - (eshell-parse-command (car time-args) (cdr time-args)))))) + (eshell-parse-command (car time-args) +;;; http://lists.gnu.org/archive/html/bug-gnu-emacs/2007-08/msg00205.html + (eshell-stringify-list + (eshell-flatten-list (cdr time-args)))))))) (defalias 'eshell/whoami 'user-login-name)