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 dcf08fd9b57..8075a2fe676 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -8987,7 +8987,7 @@ sentinel or a process filter function has an error. */); | |||
| 8987 | const struct socket_options *sopt; | 8987 | const struct socket_options *sopt; |
| 8988 | 8988 | ||
| 8989 | #define ADD_SUBFEATURE(key, val) \ | 8989 | #define ADD_SUBFEATURE(key, val) \ |
| 8990 | subfeatures = pure_cons (pure_cons (key, pure_cons (val, Qnil)), subfeatures) | 8990 | subfeatures = Fcons (Fcons (key, Fcons (val, Qnil)), subfeatures) |
| 8991 | 8991 | ||
| 8992 | ADD_SUBFEATURE (QCnowait, Qt); | 8992 | ADD_SUBFEATURE (QCnowait, Qt); |
| 8993 | #ifdef DATAGRAM_SOCKETS | 8993 | #ifdef DATAGRAM_SOCKETS |
| @@ -9009,7 +9009,7 @@ sentinel or a process filter function has an error. */); | |||
| 9009 | ADD_SUBFEATURE (QCserver, Qt); | 9009 | ADD_SUBFEATURE (QCserver, Qt); |
| 9010 | 9010 | ||
| 9011 | for (sopt = socket_options; sopt->name; sopt++) | 9011 | for (sopt = socket_options; sopt->name; sopt++) |
| 9012 | subfeatures = pure_cons (intern_c_string (sopt->name), subfeatures); | 9012 | subfeatures = Fcons (intern_c_string (sopt->name), subfeatures); |
| 9013 | 9013 | ||
| 9014 | Fprovide (intern_c_string ("make-network-process"), subfeatures); | 9014 | Fprovide (intern_c_string ("make-network-process"), subfeatures); |
| 9015 | } | 9015 | } |