comparison src/fontset.c @ 19172:f3580f4e3587

(syms_of_fontset): Doc fixes.
author Richard M. Stallman <rms@gnu.org>
date Tue, 05 Aug 1997 18:08:38 +0000
parents ebb3e71c6dfd
children 09a1536debb4
comparison
equal deleted inserted replaced
19171:2746f25df333 19172:f3580f4e3587
830 2: code points 0x20A0..0x7FFF are used,\n\ 830 2: code points 0x20A0..0x7FFF are used,\n\
831 3: code points 0xA020..0xFF7F are used."); 831 3: code points 0xA020..0xFF7F are used.");
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,
847 "Alist of fontset names vs the aliases."); 847 "Alist of fontset names vs the aliases.");
848 Vfontset_alias_alist = Qnil; 848 Vfontset_alias_alist = Qnil;
849 849
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);
871 defsubr (&Snew_fontset); 869 defsubr (&Snew_fontset);
872 defsubr (&Sset_fontset_font); 870 defsubr (&Sset_fontset_font);