mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
read-print: Special-case channel-related forms.
* guix/read-print.scm (%special-forms, %newline-forms): Add channel-related forms.
This commit is contained in:
parent
c89235fa85
commit
11f6bdc547
1 changed files with 3 additions and 1 deletions
|
@ -299,6 +299,7 @@ expressions and blanks that were read."
|
|||
('unless 2)
|
||||
('package 1)
|
||||
('origin 1)
|
||||
('channel 1)
|
||||
('modify-inputs 2)
|
||||
('modify-phases 2)
|
||||
('add-after '(((modify-phases) . 3)))
|
||||
|
@ -342,7 +343,8 @@ expressions and blanks that were read."
|
|||
('services '(operating-system))
|
||||
('set-xorg-configuration '())
|
||||
('services '(home-environment))
|
||||
('home-bash-configuration '(service))))
|
||||
('home-bash-configuration '(service))
|
||||
('introduction '(channel))))
|
||||
|
||||
(define (prefix? candidate lst)
|
||||
"Return true if CANDIDATE is a prefix of LST."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue