diff lisp/term.el @ 19082:e159c69a45f0

(term-ignore-error): Fix foolish errors.
author Richard M. Stallman <rms@gnu.org>
date Sat, 02 Aug 1997 20:41:55 +0000
parents 56a59138fa6c
children 67d2c89a660c
line wrap: on
line diff
--- a/lisp/term.el	Sat Aug 02 10:15:43 1997 +0000
+++ b/lisp/term.el	Sat Aug 02 20:41:55 1997 +0000
@@ -691,9 +691,9 @@
 
 ;;; 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")