emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r109471: * src/buffer.h (struct buffe


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109471: * src/buffer.h (struct buffer): Revert `indirections' to a simple int;
Date: Mon, 06 Aug 2012 12:22:43 -0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109471
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Mon 2012-08-06 12:22:43 -0400
message:
  * src/buffer.h (struct buffer): Revert `indirections' to a simple int;
  that should be sufficient for everyone.
modified:
  src/ChangeLog
  src/buffer.h
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-08-06 16:09:02 +0000
+++ b/src/ChangeLog     2012-08-06 16:22:43 +0000
@@ -1,3 +1,8 @@
+2012-08-06  Stefan Monnier  <address@hidden>
+
+       * buffer.h (struct buffer): Revert `indirections' to a simple int;
+       that should be sufficient for everyone.
+
 2012-08-06  Jan Djärv  <address@hidden>
 
        * keyboard.c (timer_check_2): Add break so timer_check returns next

=== modified file 'src/buffer.h'
--- a/src/buffer.h      2012-08-05 15:47:28 +0000
+++ b/src/buffer.h      2012-08-06 16:22:43 +0000
@@ -778,7 +778,7 @@
   /* In an indirect buffer, this is -1. In an ordinary buffer,
      it's the number of indirect buffers that share our text;
      zero means that we're the only owner of this text.  */
-  ptrdiff_t indirections;
+  int indirections;
 
   /* A non-zero value in slot IDX means that per-buffer variable
      with index IDX has a local value in this buffer.  The index IDX


reply via email to

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