]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve an example in w32 FAQ
authorEli Zaretskii <eliz@gnu.org>
Wed, 15 Apr 2020 17:27:12 +0000 (20:27 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 15 Apr 2020 17:27:12 +0000 (20:27 +0300)
* doc/misc/efaq-w32.texi (Font names): Modify the expression to
insert a lits of all installed fonts so as to avoid producing too
long lines.  Suggested by ndame <ndame@protonmail.com>.

doc/misc/efaq-w32.texi

index 02e63c7e4632d6d31940282d9f903193c78186d9..83dd176f98474b1c7c9ae29105b74b0c1b4123b8 100644 (file)
@@ -942,10 +942,13 @@ To find the XFLD name for a font, you can execute the following in the
 (x-select-font nil t)
 @end example
 
-To see a complete list of fonts, execute the following in the
-@file{*scratch*} buffer by pressing C-x C-e at the end of the line:
+To see a complete list of fonts, execute the following Lisp snippet by
+typing it into the @file{*scratch*} buffer and pressing @w{@kbd{C-x
+C-e}} at the end of the second line:
+
 @example
-(insert (prin1-to-string (x-list-fonts "*")))
+(dolist (font (x-list-fonts "*"))
+  (insert (format "%s\n" font)))
 @end example
 
 The command line options and frame-parameters for changing the default font