]> code.delx.au - gnu-emacs/blobdiff - lisp/emacs-lisp/bytecomp.el
(/ N) now returns the reciprocal of N
[gnu-emacs] / lisp / emacs-lisp / bytecomp.el
index 6f7ba3353f697814b59df34f9c1b75744c3f6d5d..d138effcd9d4a85352e95b28ca9b59694ff3f7cc 100644 (file)
@@ -3617,8 +3617,8 @@ discarding."
 
 (defun byte-compile-quo (form)
   (let ((len (length form)))
-    (cond ((<= len 2)
-          (byte-compile-subr-wrong-args form "2 or more"))
+    (cond ((< len 2)
+          (byte-compile-subr-wrong-args form "1 or more"))
          ((= len 3)
           (byte-compile-two-args form))
          (t