]> git.eshelyaron.com Git - emacs.git/commitdiff
(last): Handle a list that doesn't end in nil.
authorRichard M. Stallman <rms@gnu.org>
Fri, 12 Jan 2001 19:51:09 +0000 (19:51 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 12 Jan 2001 19:51:09 +0000 (19:51 +0000)
lisp/subr.el

index 3a60e15b0e5182693db64493c0fdf05c3fd76bb7..2d6a72a6ac56eca1958d40170a4c5bf441778eec 100644 (file)
@@ -131,7 +131,7 @@ If N is bigger than the length of X, return X."
          (setq m (1+ m) p (cdr p)))
        (if (<= n 0) p
          (if (< n m) (nthcdr (- m n) x) x)))
-    (while (cdr x)
+    (while (consp (cdr x))
       (setq x (cdr x)))
     x))