services: console-font: Fix docstring.

* gnu/services/base.scm (console-font-service-type): Use quasiquote and
unquote appropriately in docstring.
This commit is contained in:
Ludovic Courtès 2020-03-22 21:58:03 +01:00
parent 8825f9955a
commit ae5c4a9292
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 7 additions and 7 deletions

View File

@ -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"))