diff options
| author | Andreas Schwab | 2003-10-06 22:30:26 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2003-10-06 22:30:26 +0000 |
| commit | fba4576f02a7745e280a065e9f39a96834636f69 (patch) | |
| tree | 327f9dd48d10f78dd82291462f33d1271f612119 /src/coding.c | |
| parent | dcafe1c7b8efc5c1e8176abab91cfb7e4a065f5b (diff) | |
| download | emacs-fba4576f02a7745e280a065e9f39a96834636f69.tar.gz emacs-fba4576f02a7745e280a065e9f39a96834636f69.zip | |
(produce_chars): Revert last change.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c index b350a222a0f..f2bbc929382 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -5470,8 +5470,8 @@ produce_chars (coding) | |||
| 5470 | if (! coding->chars_at_source) | 5470 | if (! coding->chars_at_source) |
| 5471 | { | 5471 | { |
| 5472 | /* Characters are in coding->charbuf. */ | 5472 | /* Characters are in coding->charbuf. */ |
| 5473 | EMACS_INT *buf = coding->charbuf; | 5473 | int *buf = coding->charbuf; |
| 5474 | EMACS_INT *buf_end = buf + coding->charbuf_used; | 5474 | int *buf_end = buf + coding->charbuf_used; |
| 5475 | unsigned char *adjusted_dst_end; | 5475 | unsigned char *adjusted_dst_end; |
| 5476 | 5476 | ||
| 5477 | if (BUFFERP (coding->src_object) | 5477 | if (BUFFERP (coding->src_object) |