From: Richard M. Stallman Date: Sat, 15 Aug 1998 23:00:07 +0000 (+0000) Subject: x_display_unibyte_char_with_fontset renamed to X-Git-Tag: emacs-20.3~42 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e3c55541bdf8fe156cee9142212396e4754dfa65;p=emacs.git x_display_unibyte_char_with_fontset renamed to unibyte_display_via_language_environment. --- diff --git a/src/xterm.c b/src/xterm.c index 50058a58d9c..43fb3d60b3a 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -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); diff --git a/src/xterm.h b/src/xterm.h index c2d65410ce6..b6803aa3cae 100644 --- a/src/xterm.h +++ b/src/xterm.h @@ -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 ();