projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
efae05c
)
Use `virtual memory exhausted', not `Memory exhausted'.
author
Jim Meyering
<jim@meyering.net>
Mon, 31 Jul 2000 06:44:51 +0000
(06:44 +0000)
committer
Jim Meyering
<jim@meyering.net>
Mon, 31 Jul 2000 06:44:51 +0000
(06:44 +0000)
lib/obstack.c
patch
|
blob
|
history
lib/xmalloc.c
patch
|
blob
|
history
diff --git
a/lib/obstack.c
b/lib/obstack.c
index 639a6b0676f9df42714e21f8df5bf68a296b32dc..0322fb6733fda21e25df79ed51a34209ccc90f95 100644
(file)
--- a/
lib/obstack.c
+++ b/
lib/obstack.c
@@
-468,7
+468,7
@@
_obstack_memory_used (h)
static void
print_and_abort ()
{
- fputs (_("memory exhausted"), stderr);
+ fputs (_("
virtual
memory exhausted"), stderr);
fputc ('\n', stderr);
exit (obstack_exit_failure);
}
diff --git
a/lib/xmalloc.c
b/lib/xmalloc.c
index 599549424a32a3dd57d49b64c7279a5d6cc40fa0..b39705f96a548d026181f43cfac8bf5e15131b14 100644
(file)
--- a/
lib/xmalloc.c
+++ b/
lib/xmalloc.c
@@
-63,7
+63,7
@@
void (*xalloc_fail_func) PARAMS ((void)) = 0;
/* If XALLOC_FAIL_FUNC is NULL, or does return, display this message
before exiting when memory is exhausted. Goes through gettext. */
-char *const xalloc_msg_memory_exhausted = N_("
M
emory exhausted");
+char *const xalloc_msg_memory_exhausted = N_("
virtual m
emory exhausted");
void
xalloc_die (void)