# HG changeset patch # User Glenn Morris # Date 1188696197 0 # Node ID eae42b4923bd192ab0239228c2f21c62120e0077 # Parent d3395d1b79ae7dec711294de61384afa50366940 (eshell/time): Stringify and flatten the non-command arguments. diff -r d3395d1b79ae -r eae42b4923bd lisp/eshell/em-unix.el --- a/lisp/eshell/em-unix.el Sun Sep 02 01:23:02 2007 +0000 +++ b/lisp/eshell/em-unix.el Sun Sep 02 01:23:17 2007 +0000 @@ -930,7 +930,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)