diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-08-06 12:22:43 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-08-06 12:22:43 -0400 |
commit | cbcc70072ca522afbf01a6bcd0890a5ffaa730aa (patch) | |
tree | 932d1cc993202e6c4a18748b45fb9146ed67d3b6 /src/buffer.h | |
parent | 4d365fa4cc083c4f84d1af8bcefc8852c9530307 (diff) | |
download | emacs-cbcc70072ca522afbf01a6bcd0890a5ffaa730aa.tar.gz |
* src/buffer.h (struct buffer): Revert `indirections' to a simple int;
that should be sufficient for everyone.
Diffstat (limited to 'src/buffer.h')
-rw-r--r-- | src/buffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h index 9ca714b6707..54e7ef288ed 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -778,7 +778,7 @@ struct buffer /* 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 |