diff --git a/code/loop.lisp b/code/loop.lisp
index 1f427868e17a7b682058f966d85ecfd1d0afa526..4f717b4c6068b349f611f774259699894e5dbfd3 100644
--- a/code/loop.lisp
+++ b/code/loop.lisp
@@ -49,7 +49,7 @@
 
 #+cmu
 (ext:file-comment
- "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/loop.lisp,v 1.25 2004/10/05 21:55:12 rtoy Exp $")
+ "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/loop.lisp,v 1.26 2004/10/19 18:13:16 rtoy Exp $")
 
 ;;;; LOOP Iteration Macro
 
@@ -1255,6 +1255,8 @@ collected result will be returned as the value of the LOOP."
 
 
 (defun loop-make-iteration-variable (name initialization dtype)
+  (when (and name (loop-variable-p name))
+    (loop-error "Variable ~S has already been used" name))
   (loop-make-variable name initialization dtype t))