emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r105341: Turn on bidi-display-reorder


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105341: Turn on bidi-display-reordering by default.
Date: Thu, 28 Jul 2011 20:18:25 +0300
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105341
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Thu 2011-07-28 20:18:25 +0300
message:
  Turn on bidi-display-reordering by default.
  
   src/buffer.c (init_buffer_once, syms_of_buffer): Set
   bidi-display-reordering to t by default.
   doc/emacs/mule.texi (Bidirectional Editing): Document the fact that
   bidi-display-reordering is t by default.
   lispref/display.texi (Bidirectional Display): Document the fact that
   bidi-display-reordering is t by default.
modified:
  doc/emacs/ChangeLog
  doc/emacs/mule.texi
  doc/lispref/ChangeLog
  doc/lispref/display.texi
  etc/NEWS
  src/ChangeLog
  src/buffer.c
=== modified file 'doc/emacs/ChangeLog'
--- a/doc/emacs/ChangeLog       2011-07-15 15:46:28 +0000
+++ b/doc/emacs/ChangeLog       2011-07-28 17:18:25 +0000
@@ -1,3 +1,8 @@
+2011-07-28  Eli Zaretskii  <address@hidden>
+
+       * mule.texi (Bidirectional Editing): Document the fact that
+       bidi-display-reordering is t by default.
+
 2011-07-15  Lars Magne Ingebrigtsen  <address@hidden>
 
        * help.texi (Misc Help): Mention `describe-prefix-bindings'

=== modified file 'doc/emacs/mule.texi'
--- a/doc/emacs/mule.texi       2011-07-10 04:05:33 +0000
+++ b/doc/emacs/mule.texi       2011-07-28 17:18:25 +0000
@@ -1703,7 +1703,7 @@
 whether text in the buffer is reordered for display.  If its value is
 address@hidden, Emacs reorders characters that have right-to-left
 directionality when they are displayed.  The default value is
address@hidden
address@hidden
 
   Each paragraph of bidirectional text can have its own @dfn{base
 direction}, either right-to-left or left-to-right.  (Paragraph

=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2011-07-23 15:36:52 +0000
+++ b/doc/lispref/ChangeLog     2011-07-28 17:18:25 +0000
@@ -1,3 +1,8 @@
+2011-07-28  Eli Zaretskii  <address@hidden>
+
+       * display.texi (Bidirectional Display): Document the fact that
+       bidi-display-reordering is t by default.
+
 2011-07-23  Eli Zaretskii  <address@hidden>
 
        * display.texi (Bidirectional Display): New section.

=== modified file 'doc/lispref/display.texi'
--- a/doc/lispref/display.texi  2011-07-23 15:36:52 +0000
+++ b/doc/lispref/display.texi  2011-07-28 17:18:25 +0000
@@ -6007,7 +6007,7 @@
 whether text in the buffer is reordered for display.  If its value is
 address@hidden, Emacs reorders characters that have right-to-left
 directionality when they are displayed.  The default value is
address@hidden  Text in overlay strings (@pxref{Overlay
address@hidden  Text in overlay strings (@pxref{Overlay
 Properties,,before-string}), display strings (@pxref{Overlay
 Properties,,display}), and @code{display} text properties
 (@pxref{Display Property}) is also reordered if the buffer whose text

=== modified file 'etc/NEWS'
--- a/etc/NEWS  2011-07-18 17:33:02 +0000
+++ b/etc/NEWS  2011-07-28 17:18:25 +0000
@@ -173,8 +173,11 @@
 See the node "Bidirectional Editing" in the Emacs Manual for some
 additional documentation.
 
-To turn this on in any given buffer, set the buffer-local variable
-`bidi-display-reordering' to a non-nil value.  The default is nil.
+To turn this off in any given buffer, set the buffer-local variable
+`bidi-display-reordering' to a nil value.  The default is t.  For text
+that includes no right-to-left characters, the result of reordering
+looks exactly as it did in previous versions, i.e. there's no
+reordering at all.
 
 The buffer-local variable `bidi-paragraph-direction', if non-nil,
 forces each paragraph in the buffer to have its base direction

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-07-28 17:05:33 +0000
+++ b/src/ChangeLog     2011-07-28 17:18:25 +0000
@@ -1,3 +1,8 @@
+2011-07-28  Eli Zaretskii  <address@hidden>
+
+       * buffer.c (init_buffer_once, syms_of_buffer): Set
+       bidi-display-reordering to t by default.
+
 2011-07-28  Paul Eggert  <address@hidden>
 
        * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.

=== modified file 'src/buffer.c'
--- a/src/buffer.c      2011-07-14 06:41:47 +0000
+++ b/src/buffer.c      2011-07-28 17:18:25 +0000
@@ -4926,7 +4926,7 @@
   BVAR (&buffer_defaults, truncate_lines) = Qnil;
   BVAR (&buffer_defaults, word_wrap) = Qnil;
   BVAR (&buffer_defaults, ctl_arrow) = Qt;
-  BVAR (&buffer_defaults, bidi_display_reordering) = Qnil;
+  BVAR (&buffer_defaults, bidi_display_reordering) = Qt;
   BVAR (&buffer_defaults, bidi_paragraph_direction) = Qnil;
   BVAR (&buffer_defaults, cursor_type) = Qt;
   BVAR (&buffer_defaults, extra_line_spacing) = Qnil;
@@ -5500,7 +5500,7 @@
 This variable is never applied to a way of decoding a file while reading it.  
*/);
 
   DEFVAR_PER_BUFFER ("bidi-display-reordering",
-                    &BVAR (current_buffer, bidi_display_reordering), Qnil,
+                    &BVAR (current_buffer, bidi_display_reordering), Qt,
                     doc: /* Non-nil means reorder bidirectional text for 
display in the visual order.  */);
 
   DEFVAR_PER_BUFFER ("bidi-paragraph-direction",


reply via email to

[Prev in Thread] Current Thread [Next in Thread]