aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/maths.scm
diff options
context:
space:
mode:
authorLiliana Marie Prikler <liliana.prikler@gmail.com>2023-09-02 00:09:37 +0200
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2023-09-07 20:25:07 +0200
commit6750c114e3e988249f4069d0180316c6d0192350 (patch)
tree9ea669ade79feab1148efffad233764512451da7 /gnu/packages/maths.scm
parentb02ad19305b8b35444e517318e85fefc4c8a31c9 (diff)
downloadguix-6750c114e3e988249f4069d0180316c6d0192350.tar.gz
guix-6750c114e3e988249f4069d0180316c6d0192350.zip
gnu: guix-emacs: Reword docstrings.
The current documentation strings cause compilation warnings; thus improve them. * gnu/packages/aux-files/emacs/guix-emacs.el (guix-emacs-autoload-regexp) (guix-emacs-find-autoloads, guix-emacs-autoload-packages): Make do without quoting 'autoload'. Reserve quotation to variables and functions.
Diffstat (limited to 'gnu/packages/maths.scm')
0 files changed, 0 insertions, 0 deletions
-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. 2021-01-31build: test-driver.scm: Make output redirection optional.Maxim Cournoyer 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. 2017-03-22build: 'test-driver.scm' prints Scheme values with 'write'.Ludovic Courtès Previously it would print them with 'display', which was inconvenient. * build-aux/test-driver.scm (test-display): Use ~S for VALUE. (test-runner-gnu): Use 'format' instead of 'test-display' for the test name, location, and result kind.