On 07-09-2022 14:46, Mathieu Othacehe wrote: > +(define-syntax image-without-os > + (lambda (x) > + "Return an image record with the mandatory operating-system field set to > +#false. This is useful when creating an image record that will serve as a > +parent image record > + > + (define (maybe-cons field acc) > + ;; Return the given ACC list if FIELD is 'operating-system or the > + ;; concatenation of FIELD to ACC otherwise. > + (syntax-case field () > + ((f v) > + (if (eq? (syntax->datum #'f) 'operating-system) > + acc > + (cons field acc)))) > + > + (syntax-case x (image) > + ;; Remove the operating-system field from the defined fields and then > + ;; force it to #false. > + ((_ fields ...) > + (let loop ((fields #'(fields ...)) > + (acc '())) > + (syntax-case fields () > + ((last) > + #`(image > + ;; Force it to #false. > + (operating-system #false) > + #,@(maybe-cons #'last acc))) > + ((field rest ...) > + (loop #'(rest ...) (maybe-cons #'field acc))))))))) The complexity of this 'without os' macro seems to come from accepting an 'os' and then throwing it away. However, when there is an 'os', you might as well use 'image' directly, without 'image-without-os', so I think this macro can be simplified to: (define-syntax-rule (image-without-os . settings) "docstring" (image (operating-system #false) . settings)) (IIUC, '(guix records)' will detect duplicate definitions of fields.) Greetings, Maxime.