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-cmd.el


From: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/lisp/eshell/esh-cmd.el
Date: Sat, 26 Jan 2002 07:09:23 -0500

Index: emacs/lisp/eshell/esh-cmd.el
diff -c emacs/lisp/eshell/esh-cmd.el:1.15 emacs/lisp/eshell/esh-cmd.el:1.16
*** emacs/lisp/eshell/esh-cmd.el:1.15   Sun Jul 15 15:53:53 2001
--- emacs/lisp/eshell/esh-cmd.el        Sat Jan 26 07:05:22 2002
***************
*** 1008,1014 ****
      (setq eshell-current-command command)
      (let ((delim (catch 'eshell-incomplete
                   (eshell-resume-eval))))
!       (if delim
          (error "Unmatched delimiter: %c"
                 (if (listp delim)
                     (car delim)
--- 1008,1016 ----
      (setq eshell-current-command command)
      (let ((delim (catch 'eshell-incomplete
                   (eshell-resume-eval))))
!       ;; On systems that don't support async subprocesses, eshell-resume
!       ;; can return t.  Don't treat that as an error.
!       (if (and delim (not (eq delim t)))
          (error "Unmatched delimiter: %c"
                 (if (listp delim)
                     (car delim)



reply via email to

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