comparison lisp/emacs-lisp/cl-loaddefs.el @ 105236:4238ff8f3ef9

lisp/emacs-lisp/cl-loaddefs.el: Regenerate.
author Chong Yidong <cyd@stupidchicken.com>
date Mon, 28 Sep 2009 00:22:09 +0000
parents 5d471f2d8534
children d651b5b1f229
comparison
equal deleted inserted replaced
105235:f2e56d1eff32 105236:4238ff8f3ef9
272 \(fn FORM &optional FULL)" nil nil) 272 \(fn FORM &optional FULL)" nil nil)
273 273
274 ;;;*** 274 ;;;***
275 275
276 ;;;### (autoloads (compiler-macroexpand define-compiler-macro assert 276 ;;;### (autoloads (compiler-macroexpand define-compiler-macro assert
277 ;;;;;; check-type typep cl-struct-setf-expander defstruct define-modify-macro 277 ;;;;;; check-type typep deftype cl-struct-setf-expander defstruct
278 ;;;;;; callf2 callf letf* letf rotatef shiftf remf cl-do-pop psetf 278 ;;;;;; define-modify-macro callf2 callf letf* letf rotatef shiftf
279 ;;;;;; setf get-setf-method defsetf define-setf-method declare the 279 ;;;;;; remf cl-do-pop psetf setf get-setf-method defsetf define-setf-method
280 ;;;;;; locally multiple-value-setq multiple-value-bind lexical-let* 280 ;;;;;; declare the locally multiple-value-setq multiple-value-bind
281 ;;;;;; lexical-let symbol-macrolet macrolet labels flet progv psetq 281 ;;;;;; lexical-let* lexical-let symbol-macrolet macrolet labels
282 ;;;;;; do-all-symbols do-symbols dotimes dolist do* do loop return-from 282 ;;;;;; flet progv psetq do-all-symbols do-symbols dotimes dolist
283 ;;;;;; return block etypecase typecase ecase case load-time-value 283 ;;;;;; do* do loop return-from return block etypecase typecase ecase
284 ;;;;;; eval-when destructuring-bind function* defmacro* defun* gentemp 284 ;;;;;; case load-time-value eval-when destructuring-bind function*
285 ;;;;;; gensym) "cl-macs" "cl-macs.el" "cee0f106d963d8d1665bc67bea707297") 285 ;;;;;; defmacro* defun* gentemp gensym) "cl-macs" "cl-macs.el" "f6bd68f91847390d47f57b6aac6be023")
286 ;;; Generated autoloads from cl-macs.el 286 ;;; Generated autoloads from cl-macs.el
287 287
288 (autoload 'gensym "cl-macs" "\ 288 (autoload 'gensym "cl-macs" "\
289 Generate a new uninterned symbol. 289 Generate a new uninterned symbol.
290 The name is made by appending a number to PREFIX, default \"G\". 290 The name is made by appending a number to PREFIX, default \"G\".
680 680
681 (autoload 'cl-struct-setf-expander "cl-macs" "\ 681 (autoload 'cl-struct-setf-expander "cl-macs" "\
682 Not documented 682 Not documented
683 683
684 \(fn X NAME ACCESSOR PRED-FORM POS)" nil nil) 684 \(fn X NAME ACCESSOR PRED-FORM POS)" nil nil)
685
686 (autoload 'deftype "cl-macs" "\
687 Define NAME as a new data type.
688 The type name can then be used in `typecase', `check-type', etc.
689
690 \(fn NAME ARGLIST &rest BODY)" nil (quote macro))
685 691
686 (autoload 'typep "cl-macs" "\ 692 (autoload 'typep "cl-macs" "\
687 Check that OBJECT is of type TYPE. 693 Check that OBJECT is of type TYPE.
688 TYPE is a Common Lisp-style type specifier. 694 TYPE is a Common Lisp-style type specifier.
689 695