diff options
| author | Richard M. Stallman | 1997-08-05 18:08:38 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-08-05 18:08:38 +0000 |
| commit | fc8915913f77829e27e9acbd9ae9e962bcfeb556 (patch) | |
| tree | f55ef6f55410feaacd838b9524bc71ebefc21b5c | |
| parent | 6acf83d3c05b9338fe58cb51f961d6167601210e (diff) | |
| download | emacs-fc8915913f77829e27e9acbd9ae9e962bcfeb556.tar.gz emacs-fc8915913f77829e27e9acbd9ae9e962bcfeb556.zip | |
(syms_of_fontset): Doc fixes.
| -rw-r--r-- | src/fontset.c | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/src/fontset.c b/src/fontset.c index 6c90f62f33f..3e5278b907c 100644 --- a/src/fontset.c +++ b/src/fontset.c | |||
| @@ -832,15 +832,15 @@ ENCODING is one of the following integer values:\n\ | |||
| 832 | Vfont_encoding_alist = Qnil; | 832 | Vfont_encoding_alist = Qnil; |
| 833 | 833 | ||
| 834 | DEFVAR_LISP ("use-default-ascent", &Vuse_default_ascent, | 834 | DEFVAR_LISP ("use-default-ascent", &Vuse_default_ascent, |
| 835 | "Char table of characters of which ascent values should be ignored.\n\ | 835 | "Char table of characters whose ascent values should be ignored.\n\ |
| 836 | If an entry for a character is non-nil, the ascent value of the glyph\n\ | 836 | If an entry for a character is non-nil, the ascent value of the glyph\n\ |
| 837 | is assumed to be what specified by _MULE_DEFAULT_ASCENT property of a font."); | 837 | is assumed to be what specified by _MULE_DEFAULT_ASCENT property of a font."); |
| 838 | Vuse_default_ascent = Qnil; | 838 | Vuse_default_ascent = Qnil; |
| 839 | 839 | ||
| 840 | DEFVAR_LISP ("alternative-fontname-alist", &Valternative_fontname_alist, | 840 | DEFVAR_LISP ("alternative-fontname-alist", &Valternative_fontname_alist, |
| 841 | "Alist of fontname vs list of the alternative fontnames.\n\ | 841 | "Alist of fontname vs list of the alternative fontnames.\n\ |
| 842 | When no font can be opened by a fontname, the corresponding\n\ | 842 | When a specified font name is not found, the corresponding\n\ |
| 843 | alternative fontnames are tried."); | 843 | alternative fontnames (if any) are tried instead."); |
| 844 | Valternative_fontname_alist = Qnil; | 844 | Valternative_fontname_alist = Qnil; |
| 845 | 845 | ||
| 846 | DEFVAR_LISP ("fontset-alias-alist", &Vfontset_alias_alist, | 846 | DEFVAR_LISP ("fontset-alias-alist", &Vfontset_alias_alist, |
| @@ -850,21 +850,19 @@ alternative fontnames are tried."); | |||
| 850 | DEFVAR_LISP ("highlight-wrong-size-font", &Vhighlight_wrong_size_font, | 850 | DEFVAR_LISP ("highlight-wrong-size-font", &Vhighlight_wrong_size_font, |
| 851 | "*Non-nil means highlight characters shown in wrong size fonts somehow.\n\ | 851 | "*Non-nil means highlight characters shown in wrong size fonts somehow.\n\ |
| 852 | The way to highlight them depends on window system on which Emacs runs.\n\ | 852 | The way to highlight them depends on window system on which Emacs runs.\n\ |
| 853 | On X window, a rectangle is shown around each such character."); | 853 | On X11, a rectangle is shown around each such character."); |
| 854 | Vhighlight_wrong_size_font = Qnil; | 854 | Vhighlight_wrong_size_font = Qnil; |
| 855 | 855 | ||
| 856 | DEFVAR_LISP ("clip-large-size-font", &Vclip_large_size_font, | 856 | DEFVAR_LISP ("clip-large-size-font", &Vclip_large_size_font, |
| 857 | "*Non-nil means characters shown in large size fonts are clipped.\n\ | 857 | "*Non-nil means characters shown in overlarge fonts are clipped.\n\ |
| 858 | The height of clipping area is the same as that of an ASCII character.\n\ | 858 | The height of clipping area is the same as that of an ASCII character.\n\ |
| 859 | The width of the area is the same as that of an ASCII character or\n\ | 859 | The width of the area is the same as that of an ASCII character,\n\ |
| 860 | twice wider than that of an ASCII character depending on\n\ | 860 | or twice as wide, depending on the character set's column-width.\n\ |
| 861 | the width (i.e. column numbers occupied on screen) of the character set\n\ | ||
| 862 | of the character.\n\ | ||
| 863 | \n\ | 861 | \n\ |
| 864 | In the case that you only have too large size font for a specific\n\ | 862 | If the only font you have for a specific character set is too large,\n\ |
| 865 | charscter set, and clipping characters of the character set makes them\n\ | 863 | and clipping these characters makes them hard to read,\n\ |
| 866 | almost unreadable, you can set this variable to t to see the\n\ | 864 | you can set this variable to nil to display the characters without clipping.\n\ |
| 867 | characters in exchage for garbage dots left on your screen."); | 865 | The drawback is that you will get some garbage left on your screen."); |
| 868 | Vclip_large_size_font = Qt; | 866 | Vclip_large_size_font = Qt; |
| 869 | 867 | ||
| 870 | defsubr (&Squery_fontset); | 868 | defsubr (&Squery_fontset); |