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
a4d35afd
Commit
a4d35afd
authored
Mar 22, 2002
by
Stefan Monnier
Browse files
(check_pure_size): Only output a warning.
parent
0fdcb867
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/alloc.c
src/alloc.c
+2
-2
No files found.
src/alloc.c
View file @
a4d35afd
...
...
@@ -3843,8 +3843,8 @@ void
check_pure_size
()
{
if
(
pure_bytes_used_before_overflow
)
error
(
"Pure Lisp storage overflow (approx. %d bytes needed)"
,
(
int
)
(
pure_bytes_used
+
pure_bytes_used_before_overflow
));
message
(
"Pure Lisp storage overflow (approx. %d bytes needed)"
,
(
int
)
(
pure_bytes_used
+
pure_bytes_used_before_overflow
));
}
...
...
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