aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog4
-rw-r--r--src/composite.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b9552eab25f..61827942c83 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * composite.c (fill_gstring_header): Fix copy/paste typo.
4
12008-10-31 Martin Rudalics <rudalics@gmx.at> 52008-10-31 Martin Rudalics <rudalics@gmx.at>
2 6
3 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string. 7 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
diff --git a/src/composite.c b/src/composite.c
index 9b3de0a615c..5f04c8ae8c6 100644
--- a/src/composite.c
+++ b/src/composite.c
@@ -810,7 +810,7 @@ fill_gstring_header (header, start, end, font_object, string)
810 else 810 else
811 { 811 {
812 CHECK_STRING (string); 812 CHECK_STRING (string);
813 if (! STRING_MULTIBYTE (current_buffer->enable_multibyte_characters)) 813 if (! STRING_MULTIBYTE (string))
814 error ("Attempt to shape unibyte text"); 814 error ("Attempt to shape unibyte text");
815 /* FROM and TO are checked by the caller. */ 815 /* FROM and TO are checked by the caller. */
816 from = XINT (start); 816 from = XINT (start);