X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=info%2Fcl.info-1;h=d0cc813a712f2ae8c7a348820411e8290503d857;hb=22d5b7b1848ea84c50464c67233c8343babd4d56;hp=39091b886820900127585f8b7fe41c23f9e51ea0;hpb=376658ea71d16dced8acff36c3e385ac3738d868;p=chise%2Fxemacs-chise.git diff --git a/info/cl.info-1 b/info/cl.info-1 index 39091b8..d0cc813 100644 --- a/info/cl.info-1 +++ b/info/cl.info-1 @@ -224,10 +224,10 @@ a `*' has been appended to the Common Lisp name to obtain the Emacs name: defun* defsubst* defmacro* function* - member* assoc* rassoc* get* - remove* delete* mapcar* sort* - floor* ceiling* truncate* round* - mod* rem* random* + member* assoc* rassoc* remove* + delete* mapcar* sort* floor* + ceiling* truncate* round* mod* + rem* random* Internal function and variable names in the package are prefixed by `cl-'. Here is a complete list of functions _not_ prefixed by `cl-' @@ -909,7 +909,7 @@ variables. strictly speaking redundant now that `setf' exists. Many programmers continue to prefer `setq' for setting simple variables, though, purely for stylistic or historical reasons. - The macro `(setf x y)' actually expands to `(setq x y)', so + The form `(setf x y)' actually expands to `(setq x y)', so there is no performance penalty for using it in compiled code. * A call to any of the following Lisp functions: @@ -918,8 +918,8 @@ variables. nth rest first .. tenth aref elt nthcdr symbol-function symbol-value symbol-plist - get get* getf - gethash subseq + get getf gethash + subseq Note that for `nthcdr' and `getf', the list argument of the function must itself be a valid PLACE form. For example,