diff src/signal.c @ 209:41ff10fd062f r20-4b3

Import from CVS: tag r20-4b3
author cvs
date Mon, 13 Aug 2007 10:04:58 +0200
parents 9f59509498e1
children 2c611d1463a6
line wrap: on
line diff
--- a/src/signal.c	Mon Aug 13 10:03:54 2007 +0200
+++ b/src/signal.c	Mon Aug 13 10:04:58 2007 +0200
@@ -406,19 +406,11 @@
  */
       sys_suspend ();
 #else
-#ifdef VMS
-      if (sys_suspend () == -1)
-	{
-	  stdout_out ("Not running as a subprocess;\n");
-	  stdout_out ("you can continue or abort.\n");
-	}
-#else /* not VMS */
       /* Perhaps should really fork an inferior shell?
 	 But that would not provide any way to get back
 	 to the original shell, ever.  */
       stdout_out ("No support for stopping a process on this operating system;\n");
       stdout_out ("you can continue or abort.\n");
-#endif /* not VMS */
 #endif /* not SIGTSTP */
       stdout_out ("Auto-save? (y or n) ");
       fflush (stdout);
@@ -426,11 +418,7 @@
 	Fdo_auto_save (Qnil, Qnil);
       while (c != '\n')
         c = getc (stdin);
-#ifdef VMS
-      stdout_out ("Abort (and enter debugger)? (y or n) ");
-#else /* not VMS */
       stdout_out ("Abort (and dump core)? (y or n) ");
-#endif /* not VMS */
       fflush (stdout);
       if (((c = getc (stdin)) & ~040) == 'Y')
 	abort ();