* src/process.c (Fsignal_process): Simplify.
This commit is contained in:
parent
f92c6dd6cd
commit
901f13122f
1 changed files with 1 additions and 6 deletions
|
@ -6842,12 +6842,7 @@ SIGCODE may be an integer, or a symbol whose name is a signal name. */)
|
|||
{
|
||||
Lisp_Object tem = Fget_process (process);
|
||||
if (NILP (tem))
|
||||
{
|
||||
Lisp_Object process_number
|
||||
= string_to_number (SSDATA (process), 10, true);
|
||||
if (NUMBERP (process_number))
|
||||
tem = process_number;
|
||||
}
|
||||
tem = string_to_number (SSDATA (process), 10, true);
|
||||
process = tem;
|
||||
}
|
||||
else if (!NUMBERP (process))
|
||||
|
|
Loading…
Add table
Reference in a new issue