diff options
| author | Paul Eggert | 2011-02-06 11:44:36 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-02-06 11:44:36 -0800 |
| commit | b68864e5b9b695570d35dd7c41d5d010ba7cc87d (patch) | |
| tree | 4ca664d771a5b7482d1a726406cbfd4d46531fb8 /src/buffer.c | |
| parent | f8b351c190ecb3d01bd81a0c4624153b15a95f89 (diff) | |
| download | emacs-b68864e5b9b695570d35dd7c41d5d010ba7cc87d.tar.gz emacs-b68864e5b9b695570d35dd7c41d5d010ba7cc87d.zip | |
* insdel.c: conform to C89 pointer rules
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 2c6eb7b84e3..f8008195498 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -2401,7 +2401,7 @@ current buffer is cleared. */) | |||
| 2401 | *p = tmp[0]; | 2401 | *p = tmp[0]; |
| 2402 | TEMP_SET_PT_BOTH (pos + 1, pos + 1); | 2402 | TEMP_SET_PT_BOTH (pos + 1, pos + 1); |
| 2403 | bytes--; | 2403 | bytes--; |
| 2404 | insert_1_both (tmp + 1, bytes, bytes, 1, 0, 0); | 2404 | insert_1_both ((char *) tmp + 1, bytes, bytes, 1, 0, 0); |
| 2405 | /* Now the gap is after the just inserted data. */ | 2405 | /* Now the gap is after the just inserted data. */ |
| 2406 | pos = GPT; | 2406 | pos = GPT; |
| 2407 | p = GAP_END_ADDR; | 2407 | p = GAP_END_ADDR; |