emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r99780: * xdisp.c (syms_of_xdisp): Us


From: Dan Nicolaescu
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99780: * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
Date: Tue, 30 Mar 2010 10:40:04 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99780
committer: Dan Nicolaescu <address@hidden>
branch nick: trunk
timestamp: Tue 2010-03-30 10:40:04 -0700
message:
  * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
modified:
  src/ChangeLog
  src/xdisp.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-03-30 16:29:02 +0000
+++ b/src/ChangeLog     2010-03-30 17:40:04 +0000
@@ -1,3 +1,7 @@
+2010-03-30  Dan Nicolaescu  <address@hidden>
+
+       * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
+
 2010-03-30  Eli Zaretskii  <address@hidden>
 
        * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we

=== modified file 'src/xdisp.c'
--- a/src/xdisp.c       2010-03-29 12:26:24 +0000
+++ b/src/xdisp.c       2010-03-30 17:40:04 +0000
@@ -25663,9 +25663,9 @@
   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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]