emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/eshell/esh-util.el


From: John Wiegley
Subject: [Emacs-diffs] Changes to emacs/lisp/eshell/esh-util.el
Date: Fri, 26 Aug 2005 18:35:58 -0400

Index: emacs/lisp/eshell/esh-util.el
diff -c emacs/lisp/eshell/esh-util.el:1.23 emacs/lisp/eshell/esh-util.el:1.24
*** emacs/lisp/eshell/esh-util.el:1.23  Mon Aug  1 15:04:33 2005
--- emacs/lisp/eshell/esh-util.el       Fri Aug 26 22:35:57 2005
***************
*** 294,300 ****
    "Flatten any lists within ARGS, so that there are no sublists."
    (let ((new-list (list t)))
      (eshell-for a args
!       (if (and (listp a)
               (listp (cdr a)))
          (nconc new-list (eshell-flatten-list a))
        (nconc new-list (list a))))
--- 294,301 ----
    "Flatten any lists within ARGS, so that there are no sublists."
    (let ((new-list (list t)))
      (eshell-for a args
!       (if (and (not (eq a nil))
!              (listp a)
               (listp (cdr a)))
          (nconc new-list (eshell-flatten-list a))
        (nconc new-list (list a))))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]