X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=info%2Fcl.info-5;h=2f395453aeec6386e8821d9c5ec770a8145af212;hb=e437f0d5351f992b56dc45b37e0d7e44a0e22dd6;hp=a2351b0662823f7956082c400aedb78e58fe8b44;hpb=376658ea71d16dced8acff36c3e385ac3738d868;p=chise%2Fxemacs-chise.git diff --git a/info/cl.info-5 b/info/cl.info-5 index a2351b0..2f39545 100644 --- a/info/cl.info-5 +++ b/info/cl.info-5 @@ -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