diff options
| author | Kenichi Handa | 1997-08-10 04:13:19 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-08-10 04:13:19 +0000 |
| commit | 2aeafb78bfd339413a11a8bd089accb74c36630f (patch) | |
| tree | f804499e6fc4f913ab68a3fc9fad4225b31d927e /src | |
| parent | 32eb3f088ff9ed9a82e9ca361d37f29d4f0bb432 (diff) | |
| download | emacs-2aeafb78bfd339413a11a8bd089accb74c36630f.tar.gz emacs-2aeafb78bfd339413a11a8bd089accb74c36630f.zip | |
(Vignore_relative_composition): New variable.
(syms_of_fontset): Doc-string of use-default-ascent modified.
Declare ignore-relative-composition as a Lisp variable.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fontset.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/fontset.c b/src/fontset.c index 3e5278b907c..35391e5a5c4 100644 --- a/src/fontset.c +++ b/src/fontset.c | |||
| @@ -32,6 +32,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 32 | Lisp_Object Vglobal_fontset_alist; | 32 | Lisp_Object Vglobal_fontset_alist; |
| 33 | Lisp_Object Vfont_encoding_alist; | 33 | Lisp_Object Vfont_encoding_alist; |
| 34 | Lisp_Object Vuse_default_ascent; | 34 | Lisp_Object Vuse_default_ascent; |
| 35 | Lisp_Object Vignore_relative_composition; | ||
| 35 | Lisp_Object Valternative_fontname_alist; | 36 | Lisp_Object Valternative_fontname_alist; |
| 36 | Lisp_Object Vfontset_alias_alist; | 37 | Lisp_Object Vfontset_alias_alist; |
| 37 | Lisp_Object Vhighlight_wrong_size_font; | 38 | Lisp_Object Vhighlight_wrong_size_font; |
| @@ -834,7 +835,18 @@ ENCODING is one of the following integer values:\n\ | |||
| 834 | DEFVAR_LISP ("use-default-ascent", &Vuse_default_ascent, | 835 | DEFVAR_LISP ("use-default-ascent", &Vuse_default_ascent, |
| 835 | "Char table of characters whose ascent values should be ignored.\n\ | 836 | "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\ | 837 | 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."); | 838 | is assumed to be what specified by _MULE_DEFAULT_ASCENT property of a font.\n\ |
| 839 | \n\ | ||
| 840 | This affects how a composite character which contains\n\ | ||
| 841 | such a character is displayed on screen."); | ||
| 842 | Vuse_default_ascent = Qnil; | ||
| 843 | |||
| 844 | DEFVAR_LISP ("ignore-relative-composition", &Vignore_relative_composition, | ||
| 845 | "Char table of characters which is not composed relatively.\n\ | ||
| 846 | If an entry for a character is non-nil, a composite character\n\ | ||
| 847 | which contains that character is displayed so that\n\ | ||
| 848 | the glyph of that character is put without considering\n\ | ||
| 849 | an ascent and descent value of a previous character."); | ||
| 838 | Vuse_default_ascent = Qnil; | 850 | Vuse_default_ascent = Qnil; |
| 839 | 851 | ||
| 840 | DEFVAR_LISP ("alternative-fontname-alist", &Valternative_fontname_alist, | 852 | DEFVAR_LISP ("alternative-fontname-alist", &Valternative_fontname_alist, |