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
eb086ca7
Commit
eb086ca7
authored
Aug 16, 1996
by
Richard M. Stallman
Browse files
(Fbyte_code): For relative gotos, force signed arithmetic.
parent
da61a640
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/bytecode.c
src/bytecode.c
+3
-3
No files found.
src/bytecode.c
View file @
eb086ca7
...
...
@@ -475,14 +475,14 @@ If the third argument is incorrect, Emacs may crash.")
case
BRgoto
:
QUIT
;
pc
+=
*
pc
-
127
;
pc
+=
(
int
)
*
pc
-
127
;
break
;
case
BRgotoifnil
:
if
(
NILP
(
POP
))
{
QUIT
;
pc
+=
*
pc
-
128
;
pc
+=
(
int
)
*
pc
-
128
;
}
pc
++
;
break
;
...
...
@@ -491,7 +491,7 @@ If the third argument is incorrect, Emacs may crash.")
if
(
!
NILP
(
POP
))
{
QUIT
;
pc
+=
*
pc
-
128
;
pc
+=
(
int
)
*
pc
-
128
;
}
pc
++
;
break
;
...
...
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