changeset 23043:2afa25ce99aa

(unibyte_display_through_language_environment): Renamed from x_display_unibyte_char_with_fontset.
author Richard M. Stallman <rms@gnu.org>
date Mon, 17 Aug 1998 00:45:52 +0000
parents 4404e3d66e80
children 6a8e5ce6cfc1
files src/xfns.c
diffstat 1 files changed, 9 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/src/xfns.c	Sun Aug 16 06:59:13 1998 +0000
+++ b/src/xfns.c	Mon Aug 17 00:45:52 1998 +0000
@@ -137,7 +137,7 @@
 Lisp_Object Vx_pixel_size_width_font_regexp;
 
 /* A flag to control how to display unibyte 8-bit character.  */
-int x_display_unibyte_char_with_fontset;
+int unibyte_display_via_language_environment;
 
 /* Evaluate this expression to rebuild the section of syms_of_xfns
    that initializes and staticpros the symbols declared below.  Note
@@ -5386,16 +5386,14 @@
 Chinese, Japanese, and Korean.");
   Vx_pixel_size_width_font_regexp = Qnil;
 
-  DEFVAR_BOOL ("x-display-unibyte-char-with-fontset",
-	       &x_display_unibyte_char_with_fontset,
-     "*Non-nil means display unibyte 8-bit characters by a font in fontset.\n\
-Usually, unibyte 8-bit characters are displayed by a font\n\
-specified for an ASCII font.\n\
-But if this variable is non-nil, such characters are displayed by a font\n\
-for a specific character set listed in the current fontset.\n\
-Thus, changing the current language environment will change\n\
-how unibyte 8-bit characters display.");
-  x_display_unibyte_char_with_fontset = 0;
+  DEFVAR_BOOL ("unibyte-display-via-language-environment",
+	       &unibyte_display_via_language_environment,
+   "*Non-nil means display unibyte text according to language environment.\n\
+Specifically this means that unibyte non-ASCII characters\n\
+are displayed by converting them to the equivalent multibyte characters\n\
+according to the current language environment.  As a result, they are\n\
+displayed according to the current fontset.");
+  unibyte_display_via_language_environment = 0;
 
 #ifdef USE_X_TOOLKIT
   Fprovide (intern ("x-toolkit"));