diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index af402c8edb3..73bb805dcb5 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -8750,7 +8750,7 @@ sentinel or a process filter function has an error. */); | |||
| 8750 | const struct socket_options *sopt; | 8750 | const struct socket_options *sopt; |
| 8751 | 8751 | ||
| 8752 | #define ADD_SUBFEATURE(key, val) \ | 8752 | #define ADD_SUBFEATURE(key, val) \ |
| 8753 | subfeatures = pure_cons (pure_cons (key, pure_cons (val, Qnil)), subfeatures) | 8753 | subfeatures = Fcons (Fcons (key, Fcons (val, Qnil)), subfeatures) |
| 8754 | 8754 | ||
| 8755 | ADD_SUBFEATURE (QCnowait, Qt); | 8755 | ADD_SUBFEATURE (QCnowait, Qt); |
| 8756 | #ifdef DATAGRAM_SOCKETS | 8756 | #ifdef DATAGRAM_SOCKETS |
| @@ -8772,7 +8772,7 @@ sentinel or a process filter function has an error. */); | |||
| 8772 | ADD_SUBFEATURE (QCserver, Qt); | 8772 | ADD_SUBFEATURE (QCserver, Qt); |
| 8773 | 8773 | ||
| 8774 | for (sopt = socket_options; sopt->name; sopt++) | 8774 | for (sopt = socket_options; sopt->name; sopt++) |
| 8775 | subfeatures = pure_cons (intern_c_string (sopt->name), subfeatures); | 8775 | subfeatures = Fcons (intern_c_string (sopt->name), subfeatures); |
| 8776 | 8776 | ||
| 8777 | Fprovide (intern_c_string ("make-network-process"), subfeatures); | 8777 | Fprovide (intern_c_string ("make-network-process"), subfeatures); |
| 8778 | } | 8778 | } |