From 1ca0a5571183b014a50fad56bea89472a47c1e8b Mon Sep 17 00:00:00 2001
From: Raymond Toy <toy.raymond@gmail.com>
Date: Sun, 14 Jun 2015 08:31:14 -0700
Subject: [PATCH] Fix #4: ELT signals error on invalid index on lists

code/seq.lisp:
o Define internal LIST-ELT* function that executes ELT on lists,
  signaling an error if the index is invalid.

compiler/seqtran.lisp:
o Change the deftransform for ELT to use LIST-ELT* instead of NTH.

tests/issues.lisp:
o Add test for this issue.
---
 src/code/seq.lisp         | 10 ++++++++++
 src/compiler/seqtran.lisp |  4 ++--
 tests/issues.lisp         | 15 +++++++++++++++
 3 files changed, 27 insertions(+), 2 deletions(-)

diff --git a/src/code/seq.lisp b/src/code/seq.lisp
index 0c4ff02c5..ad5048d19 100644
--- a/src/code/seq.lisp
+++ b/src/code/seq.lisp
@@ -138,6 +138,16 @@
     (t
      (make-sequence-of-type (result-type-or-lose type) length))))
   
+(defun list-elt* (sequence index)
+  (declare (type list sequence))
+  (do ((count index (1- count))
+       (list sequence (cdr list)))
+      ((= count 0)
+       (if (endp list)
+	   (signal-index-too-large-error sequence index)
+	   (car list)))
+    (declare (type (integer 0) count))))
+
 (defun elt (sequence index)
   "Returns the element of SEQUENCE specified by INDEX."
   (etypecase sequence
diff --git a/src/compiler/seqtran.lisp b/src/compiler/seqtran.lisp
index 1e0bd1743..4dcd70925 100644
--- a/src/compiler/seqtran.lisp
+++ b/src/compiler/seqtran.lisp
@@ -107,8 +107,8 @@
 (deftransform elt ((s i) ((simple-array * (*)) *) * :when :both)
   '(aref s i))
 
-(deftransform elt ((s i) (list *) * :when :both :policy (< safety 3))
-  '(nth i s))
+(deftransform elt ((s i) (list *) * :when :both)
+  '(lisp::list-elt* s i))
 
 (deftransform %setelt ((s i v) ((simple-array * (*)) * *) * :when :both)
   '(%aset s i v))
diff --git a/tests/issues.lisp b/tests/issues.lisp
index 97d3dc9e8..2684d83ed 100644
--- a/tests/issues.lisp
+++ b/tests/issues.lisp
@@ -23,3 +23,18 @@
   (assert-equal
    '(square x)
    (funcall (compiler-macro-function 'square) '(funcall #'square x) nil)))
+
+(define-test issue.5
+    (:tag :issues)
+  (assert-true
+   (handler-case
+       (let ((f (compile nil '(lambda (list)
+			       (declare (type list list)
+				(optimize (speed 1) (safety 1) (compilation-speed 1) (space 1) (debug 1)))
+			       (elt list 3)))))
+	 (funcall f (list 0 1 2)))
+     ;; ELT should signal an error in this case.
+     (lisp::index-too-large-error ()
+       t)
+     (t ()
+       nil))))
-- 
GitLab