Move definition of deprecated MAKE-ANNOTATED-SELECT behind the definition of MAKE-SELECT.
This commit is contained in:
parent
b532f8a991
commit
2ff183fa28
|
@ -255,9 +255,6 @@
|
|||
select-options
|
||||
(map make-simple-select-option select-options)))
|
||||
|
||||
;; deprecated: Does not introduce further functionality.
|
||||
(define make-annotated-select make-select)
|
||||
|
||||
(define (make-select select-options maybe-further-attributes)
|
||||
(let ((real-select-options (simple-options select-options)))
|
||||
(let-optionals maybe-further-attributes
|
||||
|
@ -269,6 +266,9 @@
|
|||
(make-single-select name select-options
|
||||
attributes))))))
|
||||
|
||||
;; deprecated: Does not introduce further functionality.
|
||||
(define make-annotated-select make-select)
|
||||
|
||||
;; internal
|
||||
(define (make-multiple-select name select-options attributes)
|
||||
(make-multi-input-field name "mult-select"
|
||||
|
|
Loading…
Reference in New Issue