diff options
| author | Pip Cet | 2021-05-16 15:44:26 +0200 |
|---|---|---|
| committer | Stefan Monnier | 2022-07-01 09:42:00 -0400 |
| commit | 094fd7ded365434b08f5d7c8ff499d17d566d54b (patch) | |
| tree | 40366419e9d899e48c26439f428fee7b741d307c /src/process.c | |
| parent | 3a4c408a7b6f3df5ca0eb4a406efbdb4899e9742 (diff) | |
| download | emacs-scratch/no-purespace-2.tar.gz emacs-scratch/no-purespace-2.zip | |
Remove purespace from Emacsscratch/no-purespace-2
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 | } |