aboutsummaryrefslogtreecommitdiff
path: root/doc/images/bootstrap-packages.dot
diff options
context:
space:
mode:
author宋文武 <iyzsong@member.fsf.org>2024-12-20 11:11:02 +0800
committer宋文武 <iyzsong@member.fsf.org>2024-12-22 14:08:47 +0800
commite5246e98f87d738109c5613b37d2ca27bf561dc6 (patch)
tree4893b50676101fd938e21966c26ec985a4efdbf7 /doc/images/bootstrap-packages.dot
parent964c0b44cde43c4d42e052a5cad2d14bbbac3281 (diff)
downloadguix-e5246e98f87d738109c5613b37d2ca27bf561dc6.tar.gz
guix-e5246e98f87d738109c5613b37d2ca27bf561dc6.zip
gnu: libxfce4ui: Update to 4.20.0.
* gnu/packages/xfce.scm (libxfce4ui): Update to 4.20.0. Change-Id: Id5301ea1e0694f9ed2e39943b0742a5690cc73c5
Diffstat (limited to 'doc/images/bootstrap-packages.dot')
0 files changed, 0 insertions, 0 deletions
0cefa481a42c60a2b'>style: For 'let' and similar forms, emit one binding per line....Previously, 'let' bindings could be rendered like this: (let ((x 1) (y 2) (z 3)) ...) With this change, each bindings goes in its own line. Partly fixes <https://issues.guix.gnu.org/56297>. Reported by Maxime Devos <maximedevos@telenet.be>. * guix/scripts/style.scm (pretty-print-with-comments)[list-of-lists?]: New procedure. Use it. * tests/style.scm: Add tests with 'let' and 'substitute-keyword-arguments'. Ludovic Courtès 2022-06-22style: Keep values next to their keyword....This ensures we print '#:key value' rather than insert a newline between '#:key' and 'value' as was the case before. * guix/scripts/style.scm (pretty-print-with-comments)[print-sequence]: When ITEM is a keyword, loop with FIRST? = true. * tests/style.scm: Add test. Ludovic Courtès 2022-04-14style: Correctly read dots in pairs and improper lists....Until now dots were read as symbols. * guix/scripts/style.scm (read-with-comments)[dot]: New variable. [dot?, reverse/dot]: New procedures. Use 'reverse/dot' instead of 'reverse' when reading lists. * tests/style.scm ("read-with-comments: dot notation") ("((a . 1) (b . 2))", "(a b c . boom)"): New tests. Ludovic Courtès