]> code.delx.au - gnu-emacs/commitdiff
* 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 44c55252b6233746163b766e0245c07b42b589ca..3048e901494775ce1b22ec94f2a18b751e98ca18 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 ed2db08905d9d5950bc1ac93645991602212f039..17a018b749369d3078e01d23cdedd682fefe48da 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