Use `virtual memory exhausted', not `Memory exhausted'.
authorJim Meyering <jim@meyering.net>
Mon, 31 Jul 2000 06:44:51 +0000 (06:44 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 31 Jul 2000 06:44:51 +0000 (06:44 +0000)
lib/obstack.c
lib/xmalloc.c

index 639a6b0..0322fb6 100644 (file)
@@ -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);
 }
index 5995494..b39705f 100644 (file)
@@ -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)