aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2009-10-04 09:07:40 +0000
committerEli Zaretskii2009-10-04 09:07:40 +0000
commitb474425446e682423d133a953cafce53118efb41 (patch)
tree8dcf70685de03cc17f7c2a94e4204d10c1bf4828 /src
parent43b3b4d181088e895ba643375c88d397a8704aba (diff)
downloademacs-b474425446e682423d133a953cafce53118efb41.tar.gz
emacs-b474425446e682423d133a953cafce53118efb41.zip
(syms_of_xdisp) <unibyte-display-via-language-environment>: Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/xdisp.c7
2 files changed, 10 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7c5c49ccf3e..325ae19b160 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12009-10-04 Eli Zaretskii <eliz@gnu.org>
2
3 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
4 Doc fix.
5
12009-10-03 Martin Rudalics <rudalics@gmx.at> 62009-10-03 Martin Rudalics <rudalics@gmx.at>
2 7
3 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618) 8 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
diff --git a/src/xdisp.c b/src/xdisp.c
index 07a2127b2d3..8bef5204ee9 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -25054,10 +25054,13 @@ fontified regions the property `fontified'. */);
25054 DEFVAR_BOOL ("unibyte-display-via-language-environment", 25054 DEFVAR_BOOL ("unibyte-display-via-language-environment",
25055 &unibyte_display_via_language_environment, 25055 &unibyte_display_via_language_environment,
25056 doc: /* *Non-nil means display unibyte text according to language environment. 25056 doc: /* *Non-nil means display unibyte text according to language environment.
25057Specifically this means that unibyte non-ASCII characters 25057Specifically, this means that raw bytes in the range 160-255 decimal
25058are displayed by converting them to the equivalent multibyte characters 25058are displayed by converting them to the equivalent multibyte characters
25059according to the current language environment. As a result, they are 25059according to the current language environment. As a result, they are
25060displayed according to the current fontset. */); 25060displayed according to the current fontset.
25061
25062Note that this variable affects only how these bytes are displayed,
25063but does not change the fact they are interpreted as raw bytes. */);
25061 unibyte_display_via_language_environment = 0; 25064 unibyte_display_via_language_environment = 0;
25062 25065
25063 DEFVAR_LISP ("max-mini-window-height", &Vmax_mini_window_height, 25066 DEFVAR_LISP ("max-mini-window-height", &Vmax_mini_window_height,