]> git.eshelyaron.com Git - emacs.git/commitdiff
(term-ignore-error): Fix foolish errors.
authorRichard M. Stallman <rms@gnu.org>
Sat, 2 Aug 1997 20:41:55 +0000 (20:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 2 Aug 1997 20:41:55 +0000 (20:41 +0000)
lisp/term.el

index df70f7509c3d3f0aae3f125ca35eb0d1bab3cb29..b7930b704e70e536df34fb94067699f9515b86b0 100644 (file)
@@ -691,9 +691,9 @@ Buffer local variable.")
 
 ;;; faces -mm
 
-(defmacro term-ignore-error (body)
+(defmacro term-ignore-error (&rest body)
   `(condition-case nil
-       (progn @,body)
+       (progn ,@body)
      (error nil)))
 
 (defvar term-default-fg-color "SkyBlue")