summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-03-22 21:58:03 +0100
committerLudovic Courtès <ludo@gnu.org>2020-03-23 00:06:58 +0100
commitae5c4a92923b2adeebd9d2b6d89976e73cfcfc7a (patch)
treeb0945e9d2a7c626a0374cc253e8276c428eafc92
parent8825f9955a49c3d5f31411705d7eea8fc0c271bd (diff)
downloadpatches-ae5c4a92923b2adeebd9d2b6d89976e73cfcfc7a.tar
patches-ae5c4a92923b2adeebd9d2b6d89976e73cfcfc7a.tar.gz
services: console-font: Fix docstring.
* gnu/services/base.scm (console-font-service-type): Use quasiquote and unquote appropriately in docstring.
-rw-r--r--gnu/services/base.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index 669a03b041..8d9a563e2b 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -817,13 +817,13 @@ tty/font pairs. The font can be the name of a font provided by the @code{kbd}
package or any valid argument to @command{setfont}, as in this example:
@example
-'((\"tty1\" . \"LatGrkCyr-8x16\")
- (\"tty2\" . (file-append
- font-tamzen
- \"/share/kbd/consolefonts/TamzenForPowerline10x20.psf\"))
- (\"tty3\" . (file-append
- font-terminus
- \"/share/consolefonts/ter-132n\"))) ; for HDPI
+`((\"tty1\" . \"LatGrkCyr-8x16\")
+ (\"tty2\" . ,(file-append
+ font-tamzen
+ \"/share/kbd/consolefonts/TamzenForPowerline10x20.psf\"))
+ (\"tty3\" . ,(file-append
+ font-terminus
+ \"/share/consolefonts/ter-132n\"))) ; for HDPI
@end example\n")))
(define* (console-font-service tty #:optional (font "LatGrkCyr-8x16"))