Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6e8d0db7
Commit
6e8d0db7
authored
May 15, 1993
by
Richard M. Stallman
Browse files
(byte-compile-track-mouse): New function.
This is a kludge; track-mouse must be compiled better.
parent
356ba514
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
lisp/emacs-lisp/bytecomp.el
lisp/emacs-lisp/bytecomp.el
+10
-0
No files found.
lisp/emacs-lisp/bytecomp.el
View file @
6e8d0db7
...
...
@@ -2610,6 +2610,7 @@ If FORM is a lambda or a macro, byte-compile it as a function."
(
byte-defop-compiler-1
save-restriction
)
(
byte-defop-compiler-1
save-window-excursion
)
(
byte-defop-compiler-1
with-output-to-temp-buffer
)
(
byte-defop-compiler-1
track-mouse
)
(
defun
byte-compile-catch
(
form
)
(
byte-compile-form
(
car
(
cdr
form
)))
...
...
@@ -2624,6 +2625,15 @@ If FORM is a lambda or a macro, byte-compile it as a function."
(
byte-compile-form-do-effect
(
car
(
cdr
form
)))
(
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
))))))))
(
defun
byte-compile-condition-case
(
form
)
(
let*
((
var
(
nth
1
form
))
(
byte-compile-bound-variables
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment