Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
4e87700b
Commit
4e87700b
authored
Jan 05, 1995
by
Roland McGrath
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fcall_interactively): Use & PSEUDOVECTOR_SIZE_MASK on `size' field of
compiled byte-code object.
parent
96277b2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/callint.c
src/callint.c
+2
-2
No files found.
src/callint.c
View file @
4e87700b
/* Call a Lisp function interactively.
Copyright (C) 1985, 1986, 1993, 1994 Free Software Foundation, Inc.
Copyright (C) 1985, 1986, 1993, 1994
, 1995
Free Software Foundation, Inc.
This file is part of GNU Emacs.
...
...
@@ -229,7 +229,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
}
else
if
(
COMPILEDP
(
fun
))
{
if
(
XVECTOR
(
fun
)
->
size
<=
COMPILED_INTERACTIVE
)
if
(
XVECTOR
(
fun
)
->
size
&
PSEUDOVECTOR_SIZE_MASK
<=
COMPILED_INTERACTIVE
)
goto
lose
;
specs
=
XVECTOR
(
fun
)
->
contents
[
COMPILED_INTERACTIVE
];
}
...
...
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