diff options
| author | Kenichi Handa | 1997-03-19 16:32:46 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-03-19 16:32:46 +0000 |
| commit | 07109bf9edbd302f64167529c6b735d3a737a44e (patch) | |
| tree | 4a660945c739048338f205c7b61c41cc1d021de7 /src | |
| parent | 467e7675540bdf5f21379a0ee5d7f92627e3ead3 (diff) | |
| download | emacs-07109bf9edbd302f64167529c6b735d3a737a44e.tar.gz emacs-07109bf9edbd302f64167529c6b735d3a737a44e.zip | |
(insert_glyphs): Fix a bug which turns up when
TS_ins_multi_chars is 0.
Diffstat (limited to 'src')
| -rw-r--r-- | src/term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c index df7f86cba92..2d8123fda97 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -944,7 +944,7 @@ insert_glyphs (start, len) | |||
| 944 | cmplus (len); | 944 | cmplus (len); |
| 945 | /* The field `last_block' should be set to 1 only at the tail. */ | 945 | /* The field `last_block' should be set to 1 only at the tail. */ |
| 946 | terminal_coding.last_block = 0; | 946 | terminal_coding.last_block = 0; |
| 947 | while (len > 0) | 947 | while (len-- > 0) |
| 948 | { | 948 | { |
| 949 | int produced, consumed; | 949 | int produced, consumed; |
| 950 | 950 | ||