diff options
| author | Paul Eggert | 2011-08-15 12:23:11 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-08-15 12:23:11 -0700 |
| commit | fe5c5d37807dbf2d224de5fe9cf821d8292112b1 (patch) | |
| tree | a2914ea78d269d29d8e02ca844c3423adc403988 /src/buffer.c | |
| parent | b24809631adbdbc48a0d140b54ff98689fc6c8d8 (diff) | |
| download | emacs-fe5c5d37807dbf2d224de5fe9cf821d8292112b1.tar.gz emacs-fe5c5d37807dbf2d224de5fe9cf821d8292112b1.zip | |
* buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
since either will do and ptrdiff_t is convenient with xpalloc.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index b61d083c3e6..5a6484e3105 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -2943,7 +2943,7 @@ static struct sortstrlist overlay_heads, overlay_tails; | |||
| 2943 | static unsigned char *overlay_str_buf; | 2943 | static unsigned char *overlay_str_buf; |
| 2944 | 2944 | ||
| 2945 | /* Allocated length of overlay_str_buf. */ | 2945 | /* Allocated length of overlay_str_buf. */ |
| 2946 | static EMACS_INT overlay_str_len; | 2946 | static ptrdiff_t overlay_str_len; |
| 2947 | 2947 | ||
| 2948 | /* A comparison function suitable for passing to qsort. */ | 2948 | /* A comparison function suitable for passing to qsort. */ |
| 2949 | static int | 2949 | static int |