diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/bidi.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/bidi.c b/src/bidi.c index 573e513469d..6ea84d9c0c4 100644 --- a/src/bidi.c +++ b/src/bidi.c | |||
| @@ -1107,15 +1107,9 @@ bidi_initialize (void) | |||
| 1107 | emacs_abort (); | 1107 | emacs_abort (); |
| 1108 | staticpro (&bidi_brackets_table); | 1108 | staticpro (&bidi_brackets_table); |
| 1109 | 1109 | ||
| 1110 | DEFSYM (Qparagraph_start, "paragraph-start"); | 1110 | paragraph_start_re = build_string ("^\\(\f\\|[ \t]*\\)$"); |
| 1111 | paragraph_start_re = Fsymbol_value (Qparagraph_start); | ||
| 1112 | if (!STRINGP (paragraph_start_re)) | ||
| 1113 | paragraph_start_re = build_string ("\f\\|[ \t]*$"); | ||
| 1114 | staticpro (¶graph_start_re); | 1111 | staticpro (¶graph_start_re); |
| 1115 | DEFSYM (Qparagraph_separate, "paragraph-separate"); | 1112 | paragraph_separate_re = build_string ("^[ \t\f]*$"); |
| 1116 | paragraph_separate_re = Fsymbol_value (Qparagraph_separate); | ||
| 1117 | if (!STRINGP (paragraph_separate_re)) | ||
| 1118 | paragraph_separate_re = build_string ("[ \t\f]*$"); | ||
| 1119 | staticpro (¶graph_separate_re); | 1113 | staticpro (¶graph_separate_re); |
| 1120 | 1114 | ||
| 1121 | bidi_cache_sp = 0; | 1115 | bidi_cache_sp = 0; |