aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/matrix.scm
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@friendly-machines.com>2024-11-12 03:55:40 +0100
committerDanny Milosavljevic <dannym@friendly-machines.com>2024-11-12 03:55:40 +0100
commitef84004825cd8a60734258c054bed194c6628f8e (patch)
treea2f9b68f47659182e41f2ffe73a5f0809d4f92a0 /gnu/packages/matrix.scm
parent0cc5b58967a1be867d50521cc44130ed85154053 (diff)
downloadguix-ef84004825cd8a60734258c054bed194c6628f8e.tar.gz
guix-ef84004825cd8a60734258c054bed194c6628f8e.zip
gnu: emacs-org-node: Update to 1.7.4.
* gnu/packages/emacs-xyz.scm (emacs-org-node): Update to 1.7.4. Change-Id: Ie1da1b7626f9deb9abc64abdb5df544f68e34c4e
Diffstat (limited to 'gnu/packages/matrix.scm')
0 files changed, 0 insertions, 0 deletions
scm?id=346210b1b2130112dd5f894c1d40afb37c1c51a5'>build: test-driver.scm: Enable colored test results by default....The Automake parallel test harness does its own smart detection of the terminal color capability and always provides the --color-tests argument to the driver. This change defaults the --color-tests argument to true when the test driver is run on its own (not via Automake). * build-aux/test-driver.scm (main): Set the default value of the --color-tests argument to true when it's not explicitly provided. Maxim Cournoyer 2021-01-31build: test-driver.scm: Make output redirection optional....This makes it easier (and less surprising) for users to experiment with the custom Scheme test driver directly. The behavior is unchanged from Automake's point of view. * build-aux/test-driver.scm (main): Make the --log-file and --trs-file arguments optional and update doc. Only open, redirect and close a port to a log file when the --log-file option is provided. Only open and close a port to a trs file when the --trs-file option is provided. (test-runner-gnu): Set OUT-PORT parameter default value to the current output port. Set the TRS-PORT parameter default value to a void port. Update doc. Maxim Cournoyer