]> git.eshelyaron.com Git - emacs.git/commitdiff
(list-iso-charset-chars): For two-byte charset, fix the `while' condition.
authorKenichi Handa <handa@m17n.org>
Thu, 23 Nov 2000 23:28:16 +0000 (23:28 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 23 Nov 2000 23:28:16 +0000 (23:28 +0000)
(list-non-iso-charset-chars): Fix the `while' condition.

lisp/international/mule-diag.el

index 370dda984693b4d68ac26b5203b0525268748cef..44115dfe3c8ee26b119afa04b4caa9b8c881aae5 100644 (file)
@@ -415,7 +415,7 @@ detailed meanings of these arguments."
     (if (= dim 1)
        (list-block-of-chars charset 0 min max)
       (let ((i min))
-       (while (< i max)
+       (while (<= i max)
          (list-block-of-chars charset i min max)
          (setq i (1+ i)))))))
 
@@ -449,7 +449,7 @@ detailed meanings of these arguments."
          (while row-range
            (setq row (car row-range) row-max (nth 1 row-range)
                  row-range (nthcdr 2 row-range))
-           (while (< row row-max)
+           (while (<= row row-max)
              (setq col-range (cdr range))
              (while col-range
                (setq col (car col-range) col-max (nth 1 col-range)