diff options
| author | Eli Zaretskii | 2014-08-23 14:02:40 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2014-08-23 14:02:40 +0300 |
| commit | 8ccc6fa95c75e22f26cf147d23df4a15d7a4bd7f (patch) | |
| tree | 0fbc6fe3ffa95ae170adf850d6f18f9a22009838 | |
| parent | 4f6bc3c7d0aa0a540a20d3a46c147419ebb49156 (diff) | |
| download | emacs-8ccc6fa95c75e22f26cf147d23df4a15d7a4bd7f.tar.gz emacs-8ccc6fa95c75e22f26cf147d23df4a15d7a4bd7f.zip | |
Remove bidi_ignore_explicit_marks_for_paragraph_level.
| -rw-r--r-- | src/bidi.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/bidi.c b/src/bidi.c index 30ec1f0a744..379350969ff 100644 --- a/src/bidi.c +++ b/src/bidi.c | |||
| @@ -260,14 +260,6 @@ typedef enum { | |||
| 260 | EXPLICIT_FORMATTING | 260 | EXPLICIT_FORMATTING |
| 261 | } bidi_category_t; | 261 | } bidi_category_t; |
| 262 | 262 | ||
| 263 | /* UAX#9 says to search only for L, AL, or R types of characters, and | ||
| 264 | ignore RLE, RLO, LRE, and LRO, when determining the base paragraph | ||
| 265 | level. Yudit indeed ignores them. This variable is therefore set | ||
| 266 | by default to ignore them, but clearing it will take them into | ||
| 267 | account. */ | ||
| 268 | extern bool bidi_ignore_explicit_marks_for_paragraph_level EXTERNALLY_VISIBLE; | ||
| 269 | bool bidi_ignore_explicit_marks_for_paragraph_level = 1; | ||
| 270 | |||
| 271 | static Lisp_Object paragraph_start_re, paragraph_separate_re; | 263 | static Lisp_Object paragraph_start_re, paragraph_separate_re; |
| 272 | static Lisp_Object Qparagraph_start, Qparagraph_separate; | 264 | static Lisp_Object Qparagraph_start, Qparagraph_separate; |
| 273 | 265 | ||