aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorPaul Eggert2016-05-05 12:48:33 -0700
committerPaul Eggert2016-05-05 12:50:01 -0700
commit50650cb6887d99b01eeb1e686fc1f695c2a0c64a (patch)
treed4396e21d5911ae39f67f5718fbcb45a59158f8e /doc
parent5e814e02f0b0b85fa486975eced09e4a7ed8ce5c (diff)
downloademacs-50650cb6887d99b01eeb1e686fc1f695c2a0c64a.tar.gz
emacs-50650cb6887d99b01eeb1e686fc1f695c2a0c64a.zip
Doc fixes for fclist and grep
A newline is needed between two fc-list calls. egrep and fgrep have been withdrawn from POSIX, so document grep -E and grep -F instead.
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/frames.texi5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/emacs/frames.texi b/doc/emacs/frames.texi
index 23ccd6a8f41..a7e709f9221 100644
--- a/doc/emacs/frames.texi
+++ b/doc/emacs/frames.texi
@@ -764,7 +764,8 @@ Fontconfig fonts, you can use the @command{fc-list} command to list
764the available fixed-width fonts, like this: 764the available fixed-width fonts, like this:
765 765
766@example 766@example
767fc-list :spacing=mono fc-list :spacing=charcell 767fc-list :spacing=mono
768fc-list :spacing=charcell
768@end example 769@end example
769 770
770@noindent 771@noindent
@@ -772,7 +773,7 @@ For server-side X fonts, you can use the @command{xlsfonts} program to
772list the available fixed-width fonts, like this: 773list the available fixed-width fonts, like this:
773 774
774@example 775@example
775xlsfonts -fn '*x*' | egrep "^[0-9]+x[0-9]+" 776xlsfonts -fn '*x*' | grep -E '^[0-9]+x[0-9]+'
776xlsfonts -fn '*-*-*-*-*-*-*-*-*-*-*-m*' 777xlsfonts -fn '*-*-*-*-*-*-*-*-*-*-*-m*'
777xlsfonts -fn '*-*-*-*-*-*-*-*-*-*-*-c*' 778xlsfonts -fn '*-*-*-*-*-*-*-*-*-*-*-c*'
778@end example 779@end example