diff options
| author | Paul Eggert | 2016-05-05 12:48:33 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-05-05 12:50:01 -0700 |
| commit | 50650cb6887d99b01eeb1e686fc1f695c2a0c64a (patch) | |
| tree | d4396e21d5911ae39f67f5718fbcb45a59158f8e /doc | |
| parent | 5e814e02f0b0b85fa486975eced09e4a7ed8ce5c (diff) | |
| download | emacs-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.texi | 5 |
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 | |||
| 764 | the available fixed-width fonts, like this: | 764 | the available fixed-width fonts, like this: |
| 765 | 765 | ||
| 766 | @example | 766 | @example |
| 767 | fc-list :spacing=mono fc-list :spacing=charcell | 767 | fc-list :spacing=mono |
| 768 | fc-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 | |||
| 772 | list the available fixed-width fonts, like this: | 773 | list the available fixed-width fonts, like this: |
| 773 | 774 | ||
| 774 | @example | 775 | @example |
| 775 | xlsfonts -fn '*x*' | egrep "^[0-9]+x[0-9]+" | 776 | xlsfonts -fn '*x*' | grep -E '^[0-9]+x[0-9]+' |
| 776 | xlsfonts -fn '*-*-*-*-*-*-*-*-*-*-*-m*' | 777 | xlsfonts -fn '*-*-*-*-*-*-*-*-*-*-*-m*' |
| 777 | xlsfonts -fn '*-*-*-*-*-*-*-*-*-*-*-c*' | 778 | xlsfonts -fn '*-*-*-*-*-*-*-*-*-*-*-c*' |
| 778 | @end example | 779 | @end example |