* xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
authorDan Nicolaescu <dann@ics.uci.edu>
Tue, 30 Mar 2010 17:40:04 +0000 (10:40 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Tue, 30 Mar 2010 17:40:04 +0000 (10:40 -0700)
src/ChangeLog
src/xdisp.c

index 44c5525..3048e90 100644 (file)
@@ -1,3 +1,7 @@
+2010-03-30  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
+
 2010-03-30  Eli Zaretskii  <eliz@gnu.org>
 
        * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
index ed2db08..17a018b 100644 (file)
@@ -25663,9 +25663,9 @@ syms_of_xdisp ()
   staticpro (&previous_help_echo_string);
   help_echo_pos = -1;
 
-  Qright_to_left = intern ("right-to-left");
+  Qright_to_left = intern_c_string ("right-to-left");
   staticpro (&Qright_to_left);
-  Qleft_to_right = intern ("left-to-right");
+  Qleft_to_right = intern_c_string ("left-to-right");
   staticpro (&Qleft_to_right);
 
 #ifdef HAVE_WINDOW_SYSTEM