File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 219
219
220
220
(defun local-client-info ()
221
221
(let ((info-file (qmerge " client-info.sexp" )))
222
- (if (probe-file info-file)
223
- (load-client-info info-file)
224
- ( progn
225
- (warn " Missing client-info.sexp, using mock info" )
226
- (mock-client-info)))))
222
+ (cond ( (probe-file info-file)
223
+ (load-client-info info-file) )
224
+ ( t
225
+ (warn " Missing client-info.sexp, using mock info" )
226
+ (mock-client-info)))))
227
227
228
228
(defun newest-client-info (&optional (info (local-client-info)))
229
229
(let ((latest (subscription-url info)))
Original file line number Diff line number Diff line change @@ -319,12 +319,12 @@ quicklisp at CL startup."
319
319
(ql-ccl :delete-directory pathname )))
320
320
321
321
(defimplementation (delete-directory-tree :qualifier :around ) (pathname )
322
- (if (directoryp pathname )
323
- (call-next-method )
324
- ( progn
325
- (warn " delete-directory-tree - not a directory, ~
326
- deleting anyway -- ~s " pathname )
327
- (delete-file pathname ))))
322
+ (cond ( (directoryp pathname )
323
+ (call-next-method ) )
324
+ ( t
325
+ (warn " delete-directory-tree - not a directory, ~
326
+ deleting anyway -- ~s " pathname )
327
+ (delete-file pathname ))))
328
328
329
329
(defun map-directory-tree (directory fun)
330
330
" Call FUN for every file in directory and all its subdirectories,
You can’t perform that action at this time.
0 commit comments