diff options
| -rw-r--r-- | lisp/international/mule-diag.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/international/mule-diag.el b/lisp/international/mule-diag.el index 370dda98469..44115dfe3c8 100644 --- a/lisp/international/mule-diag.el +++ b/lisp/international/mule-diag.el | |||
| @@ -415,7 +415,7 @@ detailed meanings of these arguments." | |||
| 415 | (if (= dim 1) | 415 | (if (= dim 1) |
| 416 | (list-block-of-chars charset 0 min max) | 416 | (list-block-of-chars charset 0 min max) |
| 417 | (let ((i min)) | 417 | (let ((i min)) |
| 418 | (while (< i max) | 418 | (while (<= i max) |
| 419 | (list-block-of-chars charset i min max) | 419 | (list-block-of-chars charset i min max) |
| 420 | (setq i (1+ i))))))) | 420 | (setq i (1+ i))))))) |
| 421 | 421 | ||
| @@ -449,7 +449,7 @@ detailed meanings of these arguments." | |||
| 449 | (while row-range | 449 | (while row-range |
| 450 | (setq row (car row-range) row-max (nth 1 row-range) | 450 | (setq row (car row-range) row-max (nth 1 row-range) |
| 451 | row-range (nthcdr 2 row-range)) | 451 | row-range (nthcdr 2 row-range)) |
| 452 | (while (< row row-max) | 452 | (while (<= row row-max) |
| 453 | (setq col-range (cdr range)) | 453 | (setq col-range (cdr range)) |
| 454 | (while col-range | 454 | (while col-range |
| 455 | (setq col (car col-range) col-max (nth 1 col-range) | 455 | (setq col (car col-range) col-max (nth 1 col-range) |