changeset 2793:92450a355346

Use `virtual memory exhausted', not `Memory exhausted'.
author Jim Meyering <jim@meyering.net>
date Mon, 31 Jul 2000 06:44:51 +0000
parents e6e76de911bb
children 58a62d5864af
files lib/obstack.c lib/xmalloc.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lib/obstack.c
+++ b/lib/obstack.c
@@ -468,7 +468,7 @@
 static void
 print_and_abort ()
 {
-  fputs (_("memory exhausted"), stderr);
+  fputs (_("virtual memory exhausted"), stderr);
   fputc ('\n', stderr);
   exit (obstack_exit_failure);
 }
--- a/lib/xmalloc.c
+++ b/lib/xmalloc.c
@@ -63,7 +63,7 @@
 
 /* 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)