Resorted; add some missing Morohashi's Daikanwa characters; add
[chise/xemacs-chise.git] / info / cl.info-5
index a2351b0..2f39545 100644 (file)
@@ -765,8 +765,8 @@ Lisp code into Emacs.
      function.  In Emacs Lisp, it works just as well to use a regular
      quote:
 
-          (loop for x in y by #'cddr collect (mapcar #'plusp x))  ; Common Lisp
-          (loop for x in y by 'cddr collect (mapcar 'plusp x))    ; Emacs Lisp
+          (loop for x in y by #'cddr collect (mapcar #'plusp x)) ; Common Lisp
+          (loop for x in y by 'cddr collect (mapcar 'plusp x))   ; Emacs Lisp
 
      When `#'' introduces a `lambda' form, it is best to write out
      `(function ...)' longhand in Emacs Lisp.  You can use a regular