]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove incorrect comments about U+2028 LS character.
authorEli Zaretskii <eliz@gnu.org>
Wed, 12 Oct 2011 15:12:52 +0000 (17:12 +0200)
committerEli Zaretskii <eliz@gnu.org>
Wed, 12 Oct 2011 15:12:52 +0000 (17:12 +0200)
See http://www.unicode.org/mail-arch/unicode-ml/y2011-m10/0048.html
for more details.

 src/bidi.c (bidi_level_of_next_char):
 src/xdisp.c (get_visually_first_element): Remove old incorrect
 comments regarding the Unicode Line Separator character.

src/ChangeLog
src/bidi.c
src/xdisp.c

index 3c10136596589cd408c0a1f9ebbf293bbfeeaadd..0d1faa3ba2f88af355681a718c281845764fb90a 100644 (file)
@@ -1,5 +1,9 @@
 2011-10-12  Eli Zaretskii  <eliz@gnu.org>
 
+       * bidi.c (bidi_level_of_next_char):
+       * xdisp.c (get_visually_first_element): Remove old incorrect
+       comments regarding the Unicode Line Separator character.
+
        * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
 
 2011-10-12  Dmitry Antipov  <dmantipov@yandex.ru>
index 2c312b14a1025cb678f7c582b10b6fabb802661f..d6be41f47a9ee480deb15fada8104c285adec99d 100644 (file)
@@ -2128,7 +2128,7 @@ bidi_level_of_next_char (struct bidi_it *bidi_it)
       do {
        ch = bidi_fetch_char (bpos += clen, cpos += nc, &disp_pos, &dpp, &bs,
                              fwp, &clen, &nc);
-       if (ch == '\n' || ch == BIDI_EOB /* || ch == LINESEP_CHAR */)
+       if (ch == '\n' || ch == BIDI_EOB)
          chtype = NEUTRAL_B;
        else
          chtype = bidi_get_type (ch, NEUTRAL_DIR);
@@ -2178,7 +2178,6 @@ bidi_level_of_next_char (struct bidi_it *bidi_it)
   else if (bidi_it->orig_type == NEUTRAL_B /* L1 */
           || bidi_it->orig_type == NEUTRAL_S
           || bidi_it->ch == '\n' || bidi_it->ch == BIDI_EOB
-          /* || bidi_it->ch == LINESEP_CHAR */
           || (bidi_it->orig_type == NEUTRAL_WS
               && (bidi_it->next_for_ws.type == NEUTRAL_B
                   || bidi_it->next_for_ws.type == NEUTRAL_S)))
index 86098553e1dd06c45b6cb4c4bb5cb64852df1b5d..b44c2fc765ee9b840f255ca7e0b9418fbf3a088f 100644 (file)
@@ -7148,7 +7148,6 @@ get_visually_first_element (struct it *it)
     }
   else if (it->bidi_it.charpos == bob
           || (!string_p
-              /* FIXME: Should support all Unicode line separators.  */
               && (FETCH_CHAR (it->bidi_it.bytepos - 1) == '\n'
                   || FETCH_CHAR (it->bidi_it.bytepos) == '\n')))
     {