aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorKarl Heuer1995-03-28 23:33:32 +0000
committerKarl Heuer1995-03-28 23:33:32 +0000
commit9fa195a2cc26639042156cb58016e3b4684756db (patch)
tree86d87a07e8268684545e8c30a1377d44161a9b4e /src/process.c
parent84a99e734479c251660ea072e35ffe8d28b70b16 (diff)
downloademacs-9fa195a2cc26639042156cb58016e3b4684756db.tar.gz
emacs-9fa195a2cc26639042156cb58016e3b4684756db.zip
(Fsignal_process): SIGCODE is a symbol, not a string.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c2
1 files changed, 1 insertions, 1 deletions
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.")
3053 handle_signal ("SIGUSR2", SIGUSR2); 3053 handle_signal ("SIGUSR2", SIGUSR2);
3054#endif 3054#endif
3055 else 3055 else
3056 error ("Undefined signal name %s", XSTRING (sigcode)->data); 3056 error ("Undefined signal name %s", name);
3057 } 3057 }
3058 3058
3059#undef handle_signal 3059#undef handle_signal