]> git.eshelyaron.com Git - emacs.git/commitdiff
(byte-optimize-nthcdr): Fix previous change.
authorRichard M. Stallman <rms@gnu.org>
Tue, 1 Aug 1995 06:44:48 +0000 (06:44 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 1 Aug 1995 06:44:48 +0000 (06:44 +0000)
lisp/emacs-lisp/byte-opt.el

index 46d812299f77fc009c1d63695530512ca2ea06fd..9d69a2fc75e6b77e7847ed419c6d74976282f790 100644 (file)
       (byte-optimize-predicate form)
     (let ((count (nth 1 form)))
       (setq form (nth 2 form))
-      (while (> (setq count (1- count)) 0)
+      (while (>= (setq count (1- count)) 0)
        (setq form (list 'cdr form)))
       form)))
 \f