1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-15 17:00:26 +00:00

(process_send_signal): Use CDISABLE.

This commit is contained in:
Kim F. Storm 2004-08-19 10:08:00 +00:00
parent 2439909e48
commit ca4313d5ab

View File

@ -5594,15 +5594,7 @@ process_send_signal (process, signo, current_group, nomsg)
break;
}
#ifndef _POSIX_VDISABLE
#ifdef CVDISABLE
#define _POSIX_VDISABLE CVDISABLE
#else
#define _POSIX_VDISABLE '\0'
#endif
#endif
if (sig_char && *sig_char != _POSIX_VDISABLE)
if (sig_char && *sig_char != CDISABLE)
send_process (proc, sig_char, 1, Qnil);
return;
#else /* ! HAVE_TERMIOS */