@@ -56,7 +56,7 @@ If a non-local exit occurs during the execution of `BODY' call CLOSE with :ABORT
56
56
(:ipv4 (create-socket :ipv4 ,@ args))
57
57
(:ipv6 (create-socket :ipv6 ,@ args))))
58
58
59
- (defmacro with-guard-again -non-list-args-and-destructuring-bind-errors
59
+ (defmacro with-guard-against -non-list-args-and-destructuring-bind-errors
60
60
(form args &body body)
61
61
` (if (listp , args)
62
62
(handler-case (progn ,@ body)
@@ -100,7 +100,7 @@ If a non-local exit occurs during the execution of `BODY' call CLOSE with :ABORT
100
100
input-buffer-size output-buffer-size)))
101
101
102
102
(define-compiler-macro %make-internet-stream-active-socket (&whole form args family ef)
103
- (with-guard-again -non-list-args-and-destructuring-bind-errors
103
+ (with-guard-against -non-list-args-and-destructuring-bind-errors
104
104
form args
105
105
(destructuring-bind (&key keepalive nodelay (reuse-address t )
106
106
local-host (local-port 0 )
@@ -140,7 +140,7 @@ If a non-local exit occurs during the execution of `BODY' call CLOSE with :ABORT
140
140
local-host local-port backlog)))
141
141
142
142
(define-compiler-macro %make-internet-stream-passive-socket (&whole form args family ef)
143
- (with-guard-again -non-list-args-and-destructuring-bind-errors
143
+ (with-guard-against -non-list-args-and-destructuring-bind-errors
144
144
form args
145
145
(destructuring-bind (&key interface (reuse-address t )
146
146
(local-host +any-host+ ) (local-port 0 )
@@ -174,7 +174,7 @@ If a non-local exit occurs during the execution of `BODY' call CLOSE with :ABORT
174
174
input-buffer-size output-buffer-size)))
175
175
176
176
(define-compiler-macro %make-local-stream-active-socket (&whole form args family ef)
177
- (with-guard-again -non-list-args-and-destructuring-bind-errors
177
+ (with-guard-against -non-list-args-and-destructuring-bind-errors
178
178
form args
179
179
(destructuring-bind (&key local-filename remote-filename
180
180
input-buffer-size output-buffer-size)
@@ -203,7 +203,7 @@ If a non-local exit occurs during the execution of `BODY' call CLOSE with :ABORT
203
203
(%%make-local-stream-passive-socket family ef local-filename reuse-address backlog)))
204
204
205
205
(define-compiler-macro %make-local-stream-passive-socket (&whole form args family ef)
206
- (with-guard-again -non-list-args-and-destructuring-bind-errors
206
+ (with-guard-against -non-list-args-and-destructuring-bind-errors
207
207
form args
208
208
(destructuring-bind (&key local-filename (reuse-address t )
209
209
(backlog *default-backlog-size* ))
@@ -243,7 +243,7 @@ If a non-local exit occurs during the execution of `BODY' call CLOSE with :ABORT
243
243
local-host local-port remote-host remote-port)))
244
244
245
245
(define-compiler-macro %make-internet-datagram-socket (&whole form args family ef)
246
- (with-guard-again -non-list-args-and-destructuring-bind-errors
246
+ (with-guard-against -non-list-args-and-destructuring-bind-errors
247
247
form args
248
248
(destructuring-bind (&key broadcast interface (reuse-address t )
249
249
local-host (local-port 0 )
@@ -272,7 +272,7 @@ If a non-local exit occurs during the execution of `BODY' call CLOSE with :ABORT
272
272
(%%make-local-datagram-socket family ef local-filename remote-filename)))
273
273
274
274
(define-compiler-macro %make-local-datagram-socket (&whole form args family ef)
275
- (with-guard-again -non-list-args-and-destructuring-bind-errors
275
+ (with-guard-against -non-list-args-and-destructuring-bind-errors
276
276
form args
277
277
(destructuring-bind (&key local-filename remote-filename)
278
278
(cdr args)
0 commit comments