diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xdisp.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 44c55252b62..3048e901494 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern. | ||
| 4 | |||
| 1 | 2010-03-30 Eli Zaretskii <eliz@gnu.org> | 5 | 2010-03-30 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we | 7 | * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we |
diff --git a/src/xdisp.c b/src/xdisp.c index ed2db08905d..17a018b7493 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -25663,9 +25663,9 @@ syms_of_xdisp () | |||
| 25663 | staticpro (&previous_help_echo_string); | 25663 | staticpro (&previous_help_echo_string); |
| 25664 | help_echo_pos = -1; | 25664 | help_echo_pos = -1; |
| 25665 | 25665 | ||
| 25666 | Qright_to_left = intern ("right-to-left"); | 25666 | Qright_to_left = intern_c_string ("right-to-left"); |
| 25667 | staticpro (&Qright_to_left); | 25667 | staticpro (&Qright_to_left); |
| 25668 | Qleft_to_right = intern ("left-to-right"); | 25668 | Qleft_to_right = intern_c_string ("left-to-right"); |
| 25669 | staticpro (&Qleft_to_right); | 25669 | staticpro (&Qleft_to_right); |
| 25670 | 25670 | ||
| 25671 | #ifdef HAVE_WINDOW_SYSTEM | 25671 | #ifdef HAVE_WINDOW_SYSTEM |