aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer/newt/timezone.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2021-06-05 08:49:44 +0200
committerRicardo Wurmus <rekado@elephly.net>2021-06-05 09:12:43 +0200
commitef7bbc40def8d394817c12cbe83ef5208f647d1a (patch)
tree69d2e4c31804395ff249e375266e64e6deee1f40 /gnu/installer/newt/timezone.scm
parent3c024e9e96c356a9c6f441efe7acdd8111adfb00 (diff)
downloadguix-ef7bbc40def8d394817c12cbe83ef5208f647d1a.tar.gz
guix-ef7bbc40def8d394817c12cbe83ef5208f647d1a.zip
gnu: r-genomation: Update to 1.24.0.
* gnu/packages/bioconductor.scm (r-genomation): Update to 1.24.0. [propagated-inputs]: Remove r-runit.
Diffstat (limited to 'gnu/installer/newt/timezone.scm')
0 files changed, 0 insertions, 0 deletions
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