]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fstop_process, Fcontinue_process): Follow error conventions.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 23 Jun 2005 16:13:54 +0000 (16:13 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 23 Jun 2005 16:13:54 +0000 (16:13 +0000)
src/process.c

index bfd40888787a25336cb8d2d410f4bef26639f3f3..294cc26f17bae34923338971c1bbff9357c1a69f 100644 (file)
@@ -5835,7 +5835,7 @@ If PROCESS is a network process, inhibit handling of incoming traffic.  */)
     }
 #endif
 #ifndef SIGTSTP
-  error ("no SIGTSTP support");
+  error ("No SIGTSTP support");
 #else
   process_send_signal (process, SIGTSTP, current_group, 0);
 #endif
@@ -5869,7 +5869,7 @@ If PROCESS is a network process, resume handling of incoming traffic.  */)
 #ifdef SIGCONT
     process_send_signal (process, SIGCONT, current_group, 0);
 #else
-    error ("no SIGCONT support");
+    error ("No SIGCONT support");
 #endif
   return process;
 }