From: Juanma Barranquero Date: Thu, 23 Jun 2005 16:13:54 +0000 (+0000) Subject: (Fstop_process, Fcontinue_process): Follow error conventions. X-Git-Tag: emacs-pretest-22.0.90~8699 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a9a73d6c0bd4724ae9256b1b3f6195592c46b1c8;p=emacs.git (Fstop_process, Fcontinue_process): Follow error conventions. --- diff --git a/src/process.c b/src/process.c index bfd40888787..294cc26f17b 100644 --- a/src/process.c +++ b/src/process.c @@ -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; }