diff options
| author | Dan Nicolaescu | 2010-03-30 10:40:04 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-03-30 10:40:04 -0700 |
| commit | b5dd0ae7bea5a98e4be9193a797d9599ccb6744a (patch) | |
| tree | cdfbf674a22868c966a95dade88454bdbbef4ae4 | |
| parent | 0ef84fc806f9f4c08f1ce0ba046fbc46af2ff9e6 (diff) | |
| download | emacs-b5dd0ae7bea5a98e4be9193a797d9599ccb6744a.tar.gz emacs-b5dd0ae7bea5a98e4be9193a797d9599ccb6744a.zip | |
* xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
| -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 |