From: Karl Heuer Date: Tue, 28 Mar 1995 23:33:32 +0000 (+0000) Subject: (Fsignal_process): SIGCODE is a symbol, not a string. X-Git-Tag: emacs-19.34~4710 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9fa195a2cc26639042156cb58016e3b4684756db;p=emacs.git (Fsignal_process): SIGCODE is a symbol, not a string. --- diff --git a/src/process.c b/src/process.c index e0c2bf1cff0..bfc3621f5b7 100644 --- a/src/process.c +++ b/src/process.c @@ -3053,7 +3053,7 @@ SIGCODE may be an integer, or a symbol whose name is a signal name.") handle_signal ("SIGUSR2", SIGUSR2); #endif else - error ("Undefined signal name %s", XSTRING (sigcode)->data); + error ("Undefined signal name %s", name); } #undef handle_signal