diff options
| author | Karl Heuer | 1995-03-28 23:33:32 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-03-28 23:33:32 +0000 |
| commit | 9fa195a2cc26639042156cb58016e3b4684756db (patch) | |
| tree | 86d87a07e8268684545e8c30a1377d44161a9b4e /src/process.c | |
| parent | 84a99e734479c251660ea072e35ffe8d28b70b16 (diff) | |
| download | emacs-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.c | 2 |
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 |