1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-18 10:16:51 +00:00

x_display_unibyte_char_with_fontset renamed to

unibyte_display_via_language_environment.
This commit is contained in:
Richard M. Stallman 1998-08-15 23:00:07 +00:00
parent 2c3d598531
commit e3c55541bd
2 changed files with 3 additions and 3 deletions

View File

@ -580,7 +580,7 @@ dumpglyphs (f, left, top, gp, n, hl, just_foreground, cmpcharp)
GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
cf = (cmpcharp ? cmpcharp->face_work : FAST_GLYPH_FACE (g));
ch = FAST_GLYPH_CHAR (g);
if (x_display_unibyte_char_with_fontset
if (unibyte_display_via_language_environment
&& SINGLE_BYTE_CHAR_P (ch)
&& ch >= 160)
ch = unibyte_char_to_multibyte (ch);
@ -621,7 +621,7 @@ dumpglyphs (f, left, top, gp, n, hl, just_foreground, cmpcharp)
g = *gp;
GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
ch = FAST_GLYPH_CHAR (g);
if (x_display_unibyte_char_with_fontset
if (unibyte_display_via_language_environment
&& SINGLE_BYTE_CHAR_P (ch)
&& ch >= 160)
ch = unibyte_char_to_multibyte (ch);

View File

@ -312,7 +312,7 @@ extern Lisp_Object x_display_name_list;
extern Lisp_Object Vx_pixel_size_width_font_regexp;
/* A flag to control how to display unibyte 8-bit character. */
extern int x_display_unibyte_char_with_fontset;
extern int unibyte_display_via_language_environment;
extern struct x_display_info *x_display_info_for_display ();
extern struct x_display_info *x_display_info_for_name ();