From: Richard M. Stallman Date: Sat, 5 Mar 1994 23:27:51 +0000 (+0000) Subject: (byte-compile-track-mouse): Handle >1 body form. X-Git-Tag: emacs-19.34~9635 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b3bbaa663d44593afd9fc96d128e1b48613b8eb4;p=emacs.git (byte-compile-track-mouse): Handle >1 body form. Generate code that binds track-mouse. --- diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 146fb204b02..437c5da3340 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -2689,13 +2689,11 @@ If FORM is a lambda or a macro, byte-compile it as a function." (byte-compile-out 'byte-unbind 1)) (defun byte-compile-track-mouse (form) - (byte-compile-form - (list - 'funcall - (list 'quote - (list 'lambda nil - (list 'track-mouse - (byte-compile-top-level (nth 1 form)))))))) + (let ((byte-compile-bound-variables byte-compile-bound-variables)) + (byte-compile-push-constant t) + (byte-compile-variable-ref 'byte-varbind 'track-mouse) + (byte-compile-body-do-effect (cdr form)) + (byte-compile-out 'byte-unbind 1))) (defun byte-compile-condition-case (form) (let* ((var (nth 1 form))