From 40c60144c35ecf0ec6c7bb72c6fc08df98cb4e09 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 31 Jul 2000 06:44:51 +0000 Subject: [PATCH] Use `virtual memory exhausted', not `Memory exhausted'. --- lib/obstack.c | 2 +- lib/xmalloc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/obstack.c b/lib/obstack.c index 639a6b067..0322fb673 100644 --- 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 599549424..b39705f96 100644 --- 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_("Memory exhausted"); +char *const xalloc_msg_memory_exhausted = N_("virtual memory exhausted"); void xalloc_die (void) -- 2.11.0