aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-05 18:08:38 +0000
committerRichard M. Stallman1997-08-05 18:08:38 +0000
commitfc8915913f77829e27e9acbd9ae9e962bcfeb556 (patch)
treef55ef6f55410feaacd838b9524bc71ebefc21b5c /src
parent6acf83d3c05b9338fe58cb51f961d6167601210e (diff)
downloademacs-fc8915913f77829e27e9acbd9ae9e962bcfeb556.tar.gz
emacs-fc8915913f77829e27e9acbd9ae9e962bcfeb556.zip
(syms_of_fontset): Doc fixes.
Diffstat (limited to 'src')
-rw-r--r--src/fontset.c24
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\
836If an entry for a character is non-nil, the ascent value of the glyph\n\ 836If an entry for a character is non-nil, the ascent value of the glyph\n\
837is assumed to be what specified by _MULE_DEFAULT_ASCENT property of a font."); 837is 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\
842When no font can be opened by a fontname, the corresponding\n\ 842When a specified font name is not found, the corresponding\n\
843alternative fontnames are tried."); 843alternative 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\
852The way to highlight them depends on window system on which Emacs runs.\n\ 852The way to highlight them depends on window system on which Emacs runs.\n\
853On X window, a rectangle is shown around each such character."); 853On 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\
858The height of clipping area is the same as that of an ASCII character.\n\ 858The height of clipping area is the same as that of an ASCII character.\n\
859The width of the area is the same as that of an ASCII character or\n\ 859The width of the area is the same as that of an ASCII character,\n\
860twice wider than that of an ASCII character depending on\n\ 860or twice as wide, depending on the character set's column-width.\n\
861the width (i.e. column numbers occupied on screen) of the character set\n\
862of the character.\n\
863\n\ 861\n\
864In the case that you only have too large size font for a specific\n\ 862If the only font you have for a specific character set is too large,\n\
865charscter set, and clipping characters of the character set makes them\n\ 863and clipping these characters makes them hard to read,\n\
866almost unreadable, you can set this variable to t to see the\n\ 864you can set this variable to nil to display the characters without clipping.\n\
867characters in exchage for garbage dots left on your screen."); 865The 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);