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
3164abe6
Commit
3164abe6
authored
Jan 26, 2004
by
Andreas Schwab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(print_preprocess): Declare size as EMACS_INT to not lose bits.
(print_object): Likewise.
parent
29a831f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/print.c
src/print.c
+3
-2
No files found.
src/print.c
View file @
3164abe6
...
...
@@ -1276,7 +1276,8 @@ static void
print_preprocess
(
obj
)
Lisp_Object
obj
;
{
int i, size;
int
i
;
EMACS_INT
size
;
loop:
if
(
STRINGP
(
obj
)
||
CONSP
(
obj
)
||
VECTORP
(
obj
)
...
...
@@ -1891,7 +1892,7 @@ print_object (obj, printcharfun, escapeflag)
}
else
{
int
size = XVECTOR (obj)->size;
EMACS_INT
size
=
XVECTOR
(
obj
)
->
size
;
if
(
COMPILEDP
(
obj
))
{
PRINTCHAR
(
'#'
);
...
...
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