diff options
| author | Eli Zaretskii | 2009-10-04 09:07:40 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2009-10-04 09:07:40 +0000 |
| commit | b474425446e682423d133a953cafce53118efb41 (patch) | |
| tree | 8dcf70685de03cc17f7c2a94e4204d10c1bf4828 /src | |
| parent | 43b3b4d181088e895ba643375c88d397a8704aba (diff) | |
| download | emacs-b474425446e682423d133a953cafce53118efb41.tar.gz emacs-b474425446e682423d133a953cafce53118efb41.zip | |
(syms_of_xdisp) <unibyte-display-via-language-environment>: Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/xdisp.c | 7 |
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 @@ | |||
| 1 | 2009-10-04 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>: | ||
| 4 | Doc fix. | ||
| 5 | |||
| 1 | 2009-10-03 Martin Rudalics <rudalics@gmx.at> | 6 | 2009-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. |
| 25057 | Specifically this means that unibyte non-ASCII characters | 25057 | Specifically, this means that raw bytes in the range 160-255 decimal |
| 25058 | are displayed by converting them to the equivalent multibyte characters | 25058 | are displayed by converting them to the equivalent multibyte characters |
| 25059 | according to the current language environment. As a result, they are | 25059 | according to the current language environment. As a result, they are |
| 25060 | displayed according to the current fontset. */); | 25060 | displayed according to the current fontset. |
| 25061 | |||
| 25062 | Note that this variable affects only how these bytes are displayed, | ||
| 25063 | but 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, |