aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorPaul Eggert2021-10-03 20:04:09 -0700
committerPaul Eggert2021-10-03 20:05:09 -0700
commitd00f3d4c05713254b3fec19601f6944442b956ff (patch)
treea7a680a2568877d56e70cfc579f9c5a6f0ea00d5 /src/process.c
parent317eb2d5b54e6c65a3bdcf2964d2b8d2232b4a13 (diff)
downloademacs-d00f3d4c05713254b3fec19601f6944442b956ff.tar.gz
emacs-d00f3d4c05713254b3fec19601f6944442b956ff.zip
Port unused decls to C2x
* src/conf_post.h (ATTRIBUTE_UNUSED): Remove. All uses replaced by MAYBE_UNUSED, and moved to start as needed for C2x.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c
index 58347a154a3..221d4c7f6c3 100644
--- a/src/process.c
+++ b/src/process.c
@@ -4004,7 +4004,7 @@ usage: (make-network-process &rest ARGS) */)
4004 4004
4005 if (!NILP (host)) 4005 if (!NILP (host))
4006 { 4006 {
4007 ptrdiff_t portstringlen ATTRIBUTE_UNUSED; 4007 MAYBE_UNUSED ptrdiff_t portstringlen;
4008 4008
4009 /* SERVICE can either be a string or int. 4009 /* SERVICE can either be a string or int.
4010 Convert to a C string for later use by getaddrinfo. */ 4010 Convert to a C string for later use by getaddrinfo. */