(cal-tex-hook, cal-tex-insert-preamble, cal-tex-month-name): Doc fix.
[emacs.git] / lisp / emacs-lisp / cl-loaddefs.el
blob0ad27359cc22f57b037640092e05b5bba5f68375
1 ;;; cl-loaddefs.el --- automatically extracted autoloads
2 ;;
3 ;;; Code:
5 \f
6 ;;;### (autoloads (cl-prettyexpand cl-macroexpand-all cl-remprop
7 ;;;;;; cl-do-remf cl-set-getf getf get* tailp list-length nreconc
8 ;;;;;; revappend concatenate subseq cl-float-limits random-state-p
9 ;;;;;; make-random-state random* signum rem* mod* round* truncate*
10 ;;;;;; ceiling* floor* isqrt lcm gcd cl-progv-before cl-set-frame-visible-p
11 ;;;;;; cl-map-overlays cl-map-intervals cl-map-keymap-recursively
12 ;;;;;; notevery notany every some mapcon mapcan mapl maplist map
13 ;;;;;; cl-mapcar-many equalp coerce) "cl-extra" "cl-extra.el" "2f89c94c42629315419a9d7404469c42")
14 ;;; Generated autoloads from cl-extra.el
16 (autoload 'coerce "cl-extra" "\
17 Coerce OBJECT to type TYPE.
18 TYPE is a Common Lisp type specifier.
20 \(fn OBJECT TYPE)" nil nil)
22 (autoload 'equalp "cl-extra" "\
23 Return t if two Lisp objects have similar structures and contents.
24 This is like `equal', except that it accepts numerically equal
25 numbers of different types (float vs. integer), and also compares
26 strings case-insensitively.
28 \(fn X Y)" nil nil)
30 (autoload 'cl-mapcar-many "cl-extra" "\
31 Not documented
33 \(fn CL-FUNC CL-SEQS)" nil nil)
35 (autoload 'map "cl-extra" "\
36 Map a FUNCTION across one or more SEQUENCEs, returning a sequence.
37 TYPE is the sequence type to return.
39 \(fn TYPE FUNCTION SEQUENCE...)" nil nil)
41 (autoload 'maplist "cl-extra" "\
42 Map FUNCTION to each sublist of LIST or LISTs.
43 Like `mapcar', except applies to lists and their cdr's rather than to
44 the elements themselves.
46 \(fn FUNCTION LIST...)" nil nil)
48 (autoload 'mapl "cl-extra" "\
49 Like `maplist', but does not accumulate values returned by the function.
51 \(fn FUNCTION LIST...)" nil nil)
53 (autoload 'mapcan "cl-extra" "\
54 Like `mapcar', but nconc's together the values returned by the function.
56 \(fn FUNCTION SEQUENCE...)" nil nil)
58 (autoload 'mapcon "cl-extra" "\
59 Like `maplist', but nconc's together the values returned by the function.
61 \(fn FUNCTION LIST...)" nil nil)
63 (autoload 'some "cl-extra" "\
64 Return true if PREDICATE is true of any element of SEQ or SEQs.
65 If so, return the true (non-nil) value returned by PREDICATE.
67 \(fn PREDICATE SEQ...)" nil nil)
69 (autoload 'every "cl-extra" "\
70 Return true if PREDICATE is true of every element of SEQ or SEQs.
72 \(fn PREDICATE SEQ...)" nil nil)
74 (autoload 'notany "cl-extra" "\
75 Return true if PREDICATE is false of every element of SEQ or SEQs.
77 \(fn PREDICATE SEQ...)" nil nil)
79 (autoload 'notevery "cl-extra" "\
80 Return true if PREDICATE is false of some element of SEQ or SEQs.
82 \(fn PREDICATE SEQ...)" nil nil)
84 (defalias 'cl-map-keymap 'map-keymap)
86 (autoload 'cl-map-keymap-recursively "cl-extra" "\
87 Not documented
89 \(fn CL-FUNC-REC CL-MAP &optional CL-BASE)" nil nil)
91 (autoload 'cl-map-intervals "cl-extra" "\
92 Not documented
94 \(fn CL-FUNC &optional CL-WHAT CL-PROP CL-START CL-END)" nil nil)
96 (autoload 'cl-map-overlays "cl-extra" "\
97 Not documented
99 \(fn CL-FUNC &optional CL-BUFFER CL-START CL-END CL-ARG)" nil nil)
101 (autoload 'cl-set-frame-visible-p "cl-extra" "\
102 Not documented
104 \(fn FRAME VAL)" nil nil)
106 (autoload 'cl-progv-before "cl-extra" "\
107 Not documented
109 \(fn SYMS VALUES)" nil nil)
111 (autoload 'gcd "cl-extra" "\
112 Return the greatest common divisor of the arguments.
114 \(fn &rest ARGS)" nil nil)
116 (autoload 'lcm "cl-extra" "\
117 Return the least common multiple of the arguments.
119 \(fn &rest ARGS)" nil nil)
121 (autoload 'isqrt "cl-extra" "\
122 Return the integer square root of the argument.
124 \(fn X)" nil nil)
126 (autoload 'floor* "cl-extra" "\
127 Return a list of the floor of X and the fractional part of X.
128 With two arguments, return floor and remainder of their quotient.
130 \(fn X &optional Y)" nil nil)
132 (autoload 'ceiling* "cl-extra" "\
133 Return a list of the ceiling of X and the fractional part of X.
134 With two arguments, return ceiling and remainder of their quotient.
136 \(fn X &optional Y)" nil nil)
138 (autoload 'truncate* "cl-extra" "\
139 Return a list of the integer part of X and the fractional part of X.
140 With two arguments, return truncation and remainder of their quotient.
142 \(fn X &optional Y)" nil nil)
144 (autoload 'round* "cl-extra" "\
145 Return a list of X rounded to the nearest integer and the remainder.
146 With two arguments, return rounding and remainder of their quotient.
148 \(fn X &optional Y)" nil nil)
150 (autoload 'mod* "cl-extra" "\
151 The remainder of X divided by Y, with the same sign as Y.
153 \(fn X Y)" nil nil)
155 (autoload 'rem* "cl-extra" "\
156 The remainder of X divided by Y, with the same sign as X.
158 \(fn X Y)" nil nil)
160 (autoload 'signum "cl-extra" "\
161 Return 1 if X is positive, -1 if negative, 0 if zero.
163 \(fn X)" nil nil)
165 (autoload 'random* "cl-extra" "\
166 Return a random nonnegative number less than LIM, an integer or float.
167 Optional second arg STATE is a random-state object.
169 \(fn LIM &optional STATE)" nil nil)
171 (autoload 'make-random-state "cl-extra" "\
172 Return a copy of random-state STATE, or of `*random-state*' if omitted.
173 If STATE is t, return a new state object seeded from the time of day.
175 \(fn &optional STATE)" nil nil)
177 (autoload 'random-state-p "cl-extra" "\
178 Return t if OBJECT is a random-state object.
180 \(fn OBJECT)" nil nil)
182 (autoload 'cl-float-limits "cl-extra" "\
183 Not documented
185 \(fn)" nil nil)
187 (autoload 'subseq "cl-extra" "\
188 Return the subsequence of SEQ from START to END.
189 If END is omitted, it defaults to the length of the sequence.
190 If START or END is negative, it counts from the end.
192 \(fn SEQ START &optional END)" nil nil)
194 (autoload 'concatenate "cl-extra" "\
195 Concatenate, into a sequence of type TYPE, the argument SEQUENCEs.
197 \(fn TYPE SEQUENCE...)" nil nil)
199 (autoload 'revappend "cl-extra" "\
200 Equivalent to (append (reverse X) Y).
202 \(fn X Y)" nil nil)
204 (autoload 'nreconc "cl-extra" "\
205 Equivalent to (nconc (nreverse X) Y).
207 \(fn X Y)" nil nil)
209 (autoload 'list-length "cl-extra" "\
210 Return the length of list X. Return nil if list is circular.
212 \(fn X)" nil nil)
214 (autoload 'tailp "cl-extra" "\
215 Return true if SUBLIST is a tail of LIST.
217 \(fn SUBLIST LIST)" nil nil)
219 (autoload 'get* "cl-extra" "\
220 Return the value of SYMBOL's PROPNAME property, or DEFAULT if none.
222 \(fn SYMBOL PROPNAME &optional DEFAULT)" nil nil)
224 (autoload 'getf "cl-extra" "\
225 Search PROPLIST for property PROPNAME; return its value or DEFAULT.
226 PROPLIST is a list of the sort returned by `symbol-plist'.
228 \(fn PROPLIST PROPNAME &optional DEFAULT)" nil nil)
230 (autoload 'cl-set-getf "cl-extra" "\
231 Not documented
233 \(fn PLIST TAG VAL)" nil nil)
235 (autoload 'cl-do-remf "cl-extra" "\
236 Not documented
238 \(fn PLIST TAG)" nil nil)
240 (autoload 'cl-remprop "cl-extra" "\
241 Remove from SYMBOL's plist the property PROPNAME and its value.
243 \(fn SYMBOL PROPNAME)" nil nil)
245 (defalias 'remprop 'cl-remprop)
247 (defalias 'cl-gethash 'gethash)
249 (defalias 'cl-puthash 'puthash)
251 (defalias 'cl-remhash 'remhash)
253 (defalias 'cl-clrhash 'clrhash)
255 (defalias 'cl-maphash 'maphash)
257 (defalias 'cl-make-hash-table 'make-hash-table)
259 (defalias 'cl-hash-table-p 'hash-table-p)
261 (defalias 'cl-hash-table-count 'hash-table-count)
263 (autoload 'cl-macroexpand-all "cl-extra" "\
264 Expand all macro calls through a Lisp FORM.
265 This also does some trivial optimizations to make the form prettier.
267 \(fn FORM &optional ENV)" nil nil)
269 (autoload 'cl-prettyexpand "cl-extra" "\
270 Not documented
272 \(fn FORM &optional FULL)" nil nil)
274 ;;;***
276 ;;;### (autoloads (compiler-macroexpand define-compiler-macro ignore-errors
277 ;;;;;; assert check-type typep cl-struct-setf-expander defstruct
278 ;;;;;; define-modify-macro callf2 callf letf* letf rotatef shiftf
279 ;;;;;; remf cl-do-pop psetf setf get-setf-method defsetf define-setf-method
280 ;;;;;; declare the locally multiple-value-setq multiple-value-bind
281 ;;;;;; lexical-let* lexical-let symbol-macrolet macrolet labels
282 ;;;;;; flet progv psetq do-all-symbols do-symbols dotimes dolist
283 ;;;;;; do* do loop return-from return block etypecase typecase ecase
284 ;;;;;; case load-time-value eval-when destructuring-bind function*
285 ;;;;;; defmacro* defun* gentemp gensym cl-compile-time-init) "cl-macs"
286 ;;;;;; "cl-macs.el" "08184742d0cc2db17ac5a2b1e4823323")
287 ;;; Generated autoloads from cl-macs.el
289 (autoload 'cl-compile-time-init "cl-macs" "\
290 Not documented
292 \(fn)" nil nil)
294 (autoload 'gensym "cl-macs" "\
295 Generate a new uninterned symbol.
296 The name is made by appending a number to PREFIX, default \"G\".
298 \(fn &optional PREFIX)" nil nil)
300 (autoload 'gentemp "cl-macs" "\
301 Generate a new interned symbol with a unique name.
302 The name is made by appending a number to PREFIX, default \"G\".
304 \(fn &optional PREFIX)" nil nil)
306 (autoload 'defun* "cl-macs" "\
307 Define NAME as a function.
308 Like normal `defun', except ARGLIST allows full Common Lisp conventions,
309 and BODY is implicitly surrounded by (block NAME ...).
311 \(fn NAME ARGLIST [DOCSTRING] BODY...)" nil (quote macro))
313 (autoload 'defmacro* "cl-macs" "\
314 Define NAME as a macro.
315 Like normal `defmacro', except ARGLIST allows full Common Lisp conventions,
316 and BODY is implicitly surrounded by (block NAME ...).
318 \(fn NAME ARGLIST [DOCSTRING] BODY...)" nil (quote macro))
320 (autoload 'function* "cl-macs" "\
321 Introduce a function.
322 Like normal `function', except that if argument is a lambda form,
323 its argument list allows full Common Lisp conventions.
325 \(fn FUNC)" nil (quote macro))
327 (autoload 'destructuring-bind "cl-macs" "\
328 Not documented
330 \(fn ARGS EXPR &rest BODY)" nil (quote macro))
332 (autoload 'eval-when "cl-macs" "\
333 Control when BODY is evaluated.
334 If `compile' is in WHEN, BODY is evaluated when compiled at top-level.
335 If `load' is in WHEN, BODY is evaluated when loaded after top-level compile.
336 If `eval' is in WHEN, BODY is evaluated when interpreted or at non-top-level.
338 \(fn (WHEN...) BODY...)" nil (quote macro))
340 (autoload 'load-time-value "cl-macs" "\
341 Like `progn', but evaluates the body at load time.
342 The result of the body appears to the compiler as a quoted constant.
344 \(fn FORM &optional READ-ONLY)" nil (quote macro))
346 (autoload 'case "cl-macs" "\
347 Eval EXPR and choose among clauses on that value.
348 Each clause looks like (KEYLIST BODY...). EXPR is evaluated and compared
349 against each key in each KEYLIST; the corresponding BODY is evaluated.
350 If no clause succeeds, case returns nil. A single atom may be used in
351 place of a KEYLIST of one atom. A KEYLIST of t or `otherwise' is
352 allowed only in the final clause, and matches if no other keys match.
353 Key values are compared by `eql'.
355 \(fn EXPR (KEYLIST BODY...)...)" nil (quote macro))
357 (autoload 'ecase "cl-macs" "\
358 Like `case', but error if no case fits.
359 `otherwise'-clauses are not allowed.
361 \(fn EXPR (KEYLIST BODY...)...)" nil (quote macro))
363 (autoload 'typecase "cl-macs" "\
364 Evals EXPR, chooses among clauses on that value.
365 Each clause looks like (TYPE BODY...). EXPR is evaluated and, if it
366 satisfies TYPE, the corresponding BODY is evaluated. If no clause succeeds,
367 typecase returns nil. A TYPE of t or `otherwise' is allowed only in the
368 final clause, and matches if no other keys match.
370 \(fn EXPR (TYPE BODY...)...)" nil (quote macro))
372 (autoload 'etypecase "cl-macs" "\
373 Like `typecase', but error if no case fits.
374 `otherwise'-clauses are not allowed.
376 \(fn EXPR (TYPE BODY...)...)" nil (quote macro))
378 (autoload 'block "cl-macs" "\
379 Define a lexically-scoped block named NAME.
380 NAME may be any symbol. Code inside the BODY forms can call `return-from'
381 to jump prematurely out of the block. This differs from `catch' and `throw'
382 in two respects: First, the NAME is an unevaluated symbol rather than a
383 quoted symbol or other form; and second, NAME is lexically rather than
384 dynamically scoped: Only references to it within BODY will work. These
385 references may appear inside macro expansions, but not inside functions
386 called from BODY.
388 \(fn NAME &rest BODY)" nil (quote macro))
390 (autoload 'return "cl-macs" "\
391 Return from the block named nil.
392 This is equivalent to `(return-from nil RESULT)'.
394 \(fn &optional RESULT)" nil (quote macro))
396 (autoload 'return-from "cl-macs" "\
397 Return from the block named NAME.
398 This jump out to the innermost enclosing `(block NAME ...)' form,
399 returning RESULT from that form (or nil if RESULT is omitted).
400 This is compatible with Common Lisp, but note that `defun' and
401 `defmacro' do not create implicit blocks as they do in Common Lisp.
403 \(fn NAME &optional RESULT)" nil (quote macro))
405 (autoload 'loop "cl-macs" "\
406 The Common Lisp `loop' macro.
407 Valid clauses are:
408 for VAR from/upfrom/downfrom NUM to/upto/downto/above/below NUM by NUM,
409 for VAR in LIST by FUNC, for VAR on LIST by FUNC, for VAR = INIT then EXPR,
410 for VAR across ARRAY, repeat NUM, with VAR = INIT, while COND, until COND,
411 always COND, never COND, thereis COND, collect EXPR into VAR,
412 append EXPR into VAR, nconc EXPR into VAR, sum EXPR into VAR,
413 count EXPR into VAR, maximize EXPR into VAR, minimize EXPR into VAR,
414 if COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...],
415 unless COND CLAUSE [and CLAUSE]... else CLAUSE [and CLAUSE...],
416 do EXPRS..., initially EXPRS..., finally EXPRS..., return EXPR,
417 finally return EXPR, named NAME.
419 \(fn CLAUSE...)" nil (quote macro))
421 (autoload 'do "cl-macs" "\
422 The Common Lisp `do' loop.
424 \(fn ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)" nil (quote macro))
426 (autoload 'do* "cl-macs" "\
427 The Common Lisp `do*' loop.
429 \(fn ((VAR INIT [STEP])...) (END-TEST [RESULT...]) BODY...)" nil (quote macro))
431 (autoload 'dolist "cl-macs" "\
432 Loop over a list.
433 Evaluate BODY with VAR bound to each `car' from LIST, in turn.
434 Then evaluate RESULT to get return value, default nil.
436 \(fn (VAR LIST [RESULT]) BODY...)" nil (quote macro))
438 (autoload 'dotimes "cl-macs" "\
439 Loop a certain number of times.
440 Evaluate BODY with VAR bound to successive integers from 0, inclusive,
441 to COUNT, exclusive. Then evaluate RESULT to get return value, default
442 nil.
444 \(fn (VAR COUNT [RESULT]) BODY...)" nil (quote macro))
446 (autoload 'do-symbols "cl-macs" "\
447 Loop over all symbols.
448 Evaluate BODY with VAR bound to each interned symbol, or to each symbol
449 from OBARRAY.
451 \(fn (VAR [OBARRAY [RESULT]]) BODY...)" nil (quote macro))
453 (autoload 'do-all-symbols "cl-macs" "\
454 Not documented
456 \(fn SPEC &rest BODY)" nil (quote macro))
458 (autoload 'psetq "cl-macs" "\
459 Set SYMs to the values VALs in parallel.
460 This is like `setq', except that all VAL forms are evaluated (in order)
461 before assigning any symbols SYM to the corresponding values.
463 \(fn SYM VAL SYM VAL ...)" nil (quote macro))
465 (autoload 'progv "cl-macs" "\
466 Bind SYMBOLS to VALUES dynamically in BODY.
467 The forms SYMBOLS and VALUES are evaluated, and must evaluate to lists.
468 Each symbol in the first list is bound to the corresponding value in the
469 second list (or made unbound if VALUES is shorter than SYMBOLS); then the
470 BODY forms are executed and their result is returned. This is much like
471 a `let' form, except that the list of symbols can be computed at run-time.
473 \(fn SYMBOLS VALUES &rest BODY)" nil (quote macro))
475 (autoload 'flet "cl-macs" "\
476 Make temporary function definitions.
477 This is an analogue of `let' that operates on the function cell of FUNC
478 rather than its value cell. The FORMs are evaluated with the specified
479 function definitions in place, then the definitions are undone (the FUNCs
480 go back to their previous definitions, or lack thereof).
482 \(fn ((FUNC ARGLIST BODY...) ...) FORM...)" nil (quote macro))
484 (autoload 'labels "cl-macs" "\
485 Make temporary function bindings.
486 This is like `flet', except the bindings are lexical instead of dynamic.
487 Unlike `flet', this macro is fully compliant with the Common Lisp standard.
489 \(fn ((FUNC ARGLIST BODY...) ...) FORM...)" nil (quote macro))
491 (autoload 'macrolet "cl-macs" "\
492 Make temporary macro definitions.
493 This is like `flet', but for macros instead of functions.
495 \(fn ((NAME ARGLIST BODY...) ...) FORM...)" nil (quote macro))
497 (autoload 'symbol-macrolet "cl-macs" "\
498 Make symbol macro definitions.
499 Within the body FORMs, references to the variable NAME will be replaced
500 by EXPANSION, and (setq NAME ...) will act like (setf EXPANSION ...).
502 \(fn ((NAME EXPANSION) ...) FORM...)" nil (quote macro))
504 (autoload 'lexical-let "cl-macs" "\
505 Like `let', but lexically scoped.
506 The main visible difference is that lambdas inside BODY will create
507 lexical closures as in Common Lisp.
509 \(fn VARLIST BODY)" nil (quote macro))
511 (autoload 'lexical-let* "cl-macs" "\
512 Like `let*', but lexically scoped.
513 The main visible difference is that lambdas inside BODY will create
514 lexical closures as in Common Lisp.
516 \(fn VARLIST BODY)" nil (quote macro))
518 (autoload 'multiple-value-bind "cl-macs" "\
519 Collect multiple return values.
520 FORM must return a list; the BODY is then executed with the first N elements
521 of this list bound (`let'-style) to each of the symbols SYM in turn. This
522 is analogous to the Common Lisp `multiple-value-bind' macro, using lists to
523 simulate true multiple return values. For compatibility, (values A B C) is
524 a synonym for (list A B C).
526 \(fn (SYM...) FORM BODY)" nil (quote macro))
528 (autoload 'multiple-value-setq "cl-macs" "\
529 Collect multiple return values.
530 FORM must return a list; the first N elements of this list are stored in
531 each of the symbols SYM in turn. This is analogous to the Common Lisp
532 `multiple-value-setq' macro, using lists to simulate true multiple return
533 values. For compatibility, (values A B C) is a synonym for (list A B C).
535 \(fn (SYM...) FORM)" nil (quote macro))
537 (autoload 'locally "cl-macs" "\
538 Not documented
540 \(fn &rest BODY)" nil (quote macro))
542 (autoload 'the "cl-macs" "\
543 Not documented
545 \(fn TYPE FORM)" nil (quote macro))
547 (autoload 'declare "cl-macs" "\
548 Not documented
550 \(fn &rest SPECS)" nil (quote macro))
552 (autoload 'define-setf-method "cl-macs" "\
553 Define a `setf' method.
554 This method shows how to handle `setf's to places of the form (NAME ARGS...).
555 The argument forms ARGS are bound according to ARGLIST, as if NAME were
556 going to be expanded as a macro, then the BODY forms are executed and must
557 return a list of five elements: a temporary-variables list, a value-forms
558 list, a store-variables list (of length one), a store-form, and an access-
559 form. See `defsetf' for a simpler way to define most setf-methods.
561 \(fn NAME ARGLIST BODY...)" nil (quote macro))
563 (autoload 'defsetf "cl-macs" "\
564 Define a `setf' method.
565 This macro is an easy-to-use substitute for `define-setf-method' that works
566 well for simple place forms. In the simple `defsetf' form, `setf's of
567 the form (setf (NAME ARGS...) VAL) are transformed to function or macro
568 calls of the form (FUNC ARGS... VAL). Example:
570 (defsetf aref aset)
572 Alternate form: (defsetf NAME ARGLIST (STORE) BODY...).
573 Here, the above `setf' call is expanded by binding the argument forms ARGS
574 according to ARGLIST, binding the value form VAL to STORE, then executing
575 BODY, which must return a Lisp form that does the necessary `setf' operation.
576 Actually, ARGLIST and STORE may be bound to temporary variables which are
577 introduced automatically to preserve proper execution order of the arguments.
578 Example:
580 (defsetf nth (n x) (v) (list 'setcar (list 'nthcdr n x) v))
582 \(fn NAME [FUNC | ARGLIST (STORE) BODY...])" nil (quote macro))
584 (autoload 'get-setf-method "cl-macs" "\
585 Return a list of five values describing the setf-method for PLACE.
586 PLACE may be any Lisp form which can appear as the PLACE argument to
587 a macro like `setf' or `incf'.
589 \(fn PLACE &optional ENV)" nil nil)
591 (autoload 'setf "cl-macs" "\
592 Set each PLACE to the value of its VAL.
593 This is a generalized version of `setq'; the PLACEs may be symbolic
594 references such as (car x) or (aref x i), as well as plain symbols.
595 For example, (setf (cadar x) y) is equivalent to (setcar (cdar x) y).
596 The return value is the last VAL in the list.
598 \(fn PLACE VAL PLACE VAL ...)" nil (quote macro))
600 (autoload 'psetf "cl-macs" "\
601 Set PLACEs to the values VALs in parallel.
602 This is like `setf', except that all VAL forms are evaluated (in order)
603 before assigning any PLACEs to the corresponding values.
605 \(fn PLACE VAL PLACE VAL ...)" nil (quote macro))
607 (autoload 'cl-do-pop "cl-macs" "\
608 Not documented
610 \(fn PLACE)" nil nil)
612 (autoload 'remf "cl-macs" "\
613 Remove TAG from property list PLACE.
614 PLACE may be a symbol, or any generalized variable allowed by `setf'.
615 The form returns true if TAG was found and removed, nil otherwise.
617 \(fn PLACE TAG)" nil (quote macro))
619 (autoload 'shiftf "cl-macs" "\
620 Shift left among PLACEs.
621 Example: (shiftf A B C) sets A to B, B to C, and returns the old A.
622 Each PLACE may be a symbol, or any generalized variable allowed by `setf'.
624 \(fn PLACE... VAL)" nil (quote macro))
626 (autoload 'rotatef "cl-macs" "\
627 Rotate left among PLACEs.
628 Example: (rotatef A B C) sets A to B, B to C, and C to A. It returns nil.
629 Each PLACE may be a symbol, or any generalized variable allowed by `setf'.
631 \(fn PLACE...)" nil (quote macro))
633 (autoload 'letf "cl-macs" "\
634 Temporarily bind to PLACEs.
635 This is the analogue of `let', but with generalized variables (in the
636 sense of `setf') for the PLACEs. Each PLACE is set to the corresponding
637 VALUE, then the BODY forms are executed. On exit, either normally or
638 because of a `throw' or error, the PLACEs are set back to their original
639 values. Note that this macro is *not* available in Common Lisp.
640 As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
641 the PLACE is not modified before executing BODY.
643 \(fn ((PLACE VALUE) ...) BODY...)" nil (quote macro))
645 (autoload 'letf* "cl-macs" "\
646 Temporarily bind to PLACEs.
647 This is the analogue of `let*', but with generalized variables (in the
648 sense of `setf') for the PLACEs. Each PLACE is set to the corresponding
649 VALUE, then the BODY forms are executed. On exit, either normally or
650 because of a `throw' or error, the PLACEs are set back to their original
651 values. Note that this macro is *not* available in Common Lisp.
652 As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)',
653 the PLACE is not modified before executing BODY.
655 \(fn ((PLACE VALUE) ...) BODY...)" nil (quote macro))
657 (autoload 'callf "cl-macs" "\
658 Set PLACE to (FUNC PLACE ARGS...).
659 FUNC should be an unquoted function name. PLACE may be a symbol,
660 or any generalized variable allowed by `setf'.
662 \(fn FUNC PLACE ARGS...)" nil (quote macro))
664 (autoload 'callf2 "cl-macs" "\
665 Set PLACE to (FUNC ARG1 PLACE ARGS...).
666 Like `callf', but PLACE is the second argument of FUNC, not the first.
668 \(fn FUNC ARG1 PLACE ARGS...)" nil (quote macro))
670 (autoload 'define-modify-macro "cl-macs" "\
671 Define a `setf'-like modify macro.
672 If NAME is called, it combines its PLACE argument with the other arguments
673 from ARGLIST using FUNC: (define-modify-macro incf (&optional (n 1)) +)
675 \(fn NAME ARGLIST FUNC &optional DOC)" nil (quote macro))
677 (autoload 'defstruct "cl-macs" "\
678 Define a struct type.
679 This macro defines a new Lisp data type called NAME, which contains data
680 stored in SLOTs. This defines a `make-NAME' constructor, a `copy-NAME'
681 copier, a `NAME-p' predicate, and setf-able `NAME-SLOT' accessors.
683 \(fn (NAME OPTIONS...) (SLOT SLOT-OPTS...)...)" nil (quote macro))
685 (autoload 'cl-struct-setf-expander "cl-macs" "\
686 Not documented
688 \(fn X NAME ACCESSOR PRED-FORM POS)" nil nil)
690 (autoload 'typep "cl-macs" "\
691 Check that OBJECT is of type TYPE.
692 TYPE is a Common Lisp-style type specifier.
694 \(fn OBJECT TYPE)" nil nil)
696 (autoload 'check-type "cl-macs" "\
697 Verify that FORM is of type TYPE; signal an error if not.
698 STRING is an optional description of the desired type.
700 \(fn FORM TYPE &optional STRING)" nil (quote macro))
702 (autoload 'assert "cl-macs" "\
703 Verify that FORM returns non-nil; signal an error if not.
704 Second arg SHOW-ARGS means to include arguments of FORM in message.
705 Other args STRING and ARGS... are arguments to be passed to `error'.
706 They are not evaluated unless the assertion fails. If STRING is
707 omitted, a default message listing FORM itself is used.
709 \(fn FORM &optional SHOW-ARGS STRING &rest ARGS)" nil (quote macro))
711 (autoload 'ignore-errors "cl-macs" "\
712 Execute BODY; if an error occurs, return nil.
713 Otherwise, return result of last form in BODY.
715 \(fn &rest BODY)" nil (quote macro))
717 (autoload 'define-compiler-macro "cl-macs" "\
718 Define a compiler-only macro.
719 This is like `defmacro', but macro expansion occurs only if the call to
720 FUNC is compiled (i.e., not interpreted). Compiler macros should be used
721 for optimizing the way calls to FUNC are compiled; the form returned by
722 BODY should do the same thing as a call to the normal function called
723 FUNC, though possibly more efficiently. Note that, like regular macros,
724 compiler macros are expanded repeatedly until no further expansions are
725 possible. Unlike regular macros, BODY can decide to \"punt\" and leave the
726 original function call alone by declaring an initial `&whole foo' parameter
727 and then returning foo.
729 \(fn FUNC ARGS &rest BODY)" nil (quote macro))
731 (autoload 'compiler-macroexpand "cl-macs" "\
732 Not documented
734 \(fn FORM)" nil nil)
736 ;;;***
738 ;;;### (autoloads (tree-equal nsublis sublis nsubst-if-not nsubst-if
739 ;;;;;; nsubst subst-if-not subst-if subsetp nset-exclusive-or set-exclusive-or
740 ;;;;;; nset-difference set-difference nintersection intersection
741 ;;;;;; nunion union rassoc-if-not rassoc-if rassoc* assoc-if-not
742 ;;;;;; assoc-if assoc* cl-adjoin member-if-not member-if member*
743 ;;;;;; merge stable-sort sort* search mismatch count-if-not count-if
744 ;;;;;; count position-if-not position-if position find-if-not find-if
745 ;;;;;; find nsubstitute-if-not nsubstitute-if nsubstitute substitute-if-not
746 ;;;;;; substitute-if substitute delete-duplicates remove-duplicates
747 ;;;;;; delete-if-not delete-if delete* remove-if-not remove-if remove*
748 ;;;;;; replace fill reduce) "cl-seq" "cl-seq.el" "e3c349e5231811c1c0482dd378dae56a")
749 ;;; Generated autoloads from cl-seq.el
751 (autoload 'reduce "cl-seq" "\
752 Reduce two-argument FUNCTION across SEQ.
754 Keywords supported: :start :end :from-end :initial-value :key
756 \(fn FUNCTION SEQ [KEYWORD VALUE]...)" nil nil)
758 (autoload 'fill "cl-seq" "\
759 Fill the elements of SEQ with ITEM.
761 Keywords supported: :start :end
763 \(fn SEQ ITEM [KEYWORD VALUE]...)" nil nil)
765 (autoload 'replace "cl-seq" "\
766 Replace the elements of SEQ1 with the elements of SEQ2.
767 SEQ1 is destructively modified, then returned.
769 Keywords supported: :start1 :end1 :start2 :end2
771 \(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil)
773 (autoload 'remove* "cl-seq" "\
774 Remove all occurrences of ITEM in SEQ.
775 This is a non-destructive function; it makes a copy of SEQ if necessary
776 to avoid corrupting the original SEQ.
778 Keywords supported: :test :test-not :key :count :start :end :from-end
780 \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
782 (autoload 'remove-if "cl-seq" "\
783 Remove all items satisfying PREDICATE in SEQ.
784 This is a non-destructive function; it makes a copy of SEQ if necessary
785 to avoid corrupting the original SEQ.
787 Keywords supported: :key :count :start :end :from-end
789 \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
791 (autoload 'remove-if-not "cl-seq" "\
792 Remove all items not satisfying PREDICATE in SEQ.
793 This is a non-destructive function; it makes a copy of SEQ if necessary
794 to avoid corrupting the original SEQ.
796 Keywords supported: :key :count :start :end :from-end
798 \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
800 (autoload 'delete* "cl-seq" "\
801 Remove all occurrences of ITEM in SEQ.
802 This is a destructive function; it reuses the storage of SEQ whenever possible.
804 Keywords supported: :test :test-not :key :count :start :end :from-end
806 \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
808 (autoload 'delete-if "cl-seq" "\
809 Remove all items satisfying PREDICATE in SEQ.
810 This is a destructive function; it reuses the storage of SEQ whenever possible.
812 Keywords supported: :key :count :start :end :from-end
814 \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
816 (autoload 'delete-if-not "cl-seq" "\
817 Remove all items not satisfying PREDICATE in SEQ.
818 This is a destructive function; it reuses the storage of SEQ whenever possible.
820 Keywords supported: :key :count :start :end :from-end
822 \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
824 (autoload 'remove-duplicates "cl-seq" "\
825 Return a copy of SEQ with all duplicate elements removed.
827 Keywords supported: :test :test-not :key :start :end :from-end
829 \(fn SEQ [KEYWORD VALUE]...)" nil nil)
831 (autoload 'delete-duplicates "cl-seq" "\
832 Remove all duplicate elements from SEQ (destructively).
834 Keywords supported: :test :test-not :key :start :end :from-end
836 \(fn SEQ [KEYWORD VALUE]...)" nil nil)
838 (autoload 'substitute "cl-seq" "\
839 Substitute NEW for OLD in SEQ.
840 This is a non-destructive function; it makes a copy of SEQ if necessary
841 to avoid corrupting the original SEQ.
843 Keywords supported: :test :test-not :key :count :start :end :from-end
845 \(fn NEW OLD SEQ [KEYWORD VALUE]...)" nil nil)
847 (autoload 'substitute-if "cl-seq" "\
848 Substitute NEW for all items satisfying PREDICATE in SEQ.
849 This is a non-destructive function; it makes a copy of SEQ if necessary
850 to avoid corrupting the original SEQ.
852 Keywords supported: :key :count :start :end :from-end
854 \(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
856 (autoload 'substitute-if-not "cl-seq" "\
857 Substitute NEW for all items not satisfying PREDICATE in SEQ.
858 This is a non-destructive function; it makes a copy of SEQ if necessary
859 to avoid corrupting the original SEQ.
861 Keywords supported: :key :count :start :end :from-end
863 \(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
865 (autoload 'nsubstitute "cl-seq" "\
866 Substitute NEW for OLD in SEQ.
867 This is a destructive function; it reuses the storage of SEQ whenever possible.
869 Keywords supported: :test :test-not :key :count :start :end :from-end
871 \(fn NEW OLD SEQ [KEYWORD VALUE]...)" nil nil)
873 (autoload 'nsubstitute-if "cl-seq" "\
874 Substitute NEW for all items satisfying PREDICATE in SEQ.
875 This is a destructive function; it reuses the storage of SEQ whenever possible.
877 Keywords supported: :key :count :start :end :from-end
879 \(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
881 (autoload 'nsubstitute-if-not "cl-seq" "\
882 Substitute NEW for all items not satisfying PREDICATE in SEQ.
883 This is a destructive function; it reuses the storage of SEQ whenever possible.
885 Keywords supported: :key :count :start :end :from-end
887 \(fn NEW PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
889 (autoload 'find "cl-seq" "\
890 Find the first occurrence of ITEM in SEQ.
891 Return the matching ITEM, or nil if not found.
893 Keywords supported: :test :test-not :key :start :end :from-end
895 \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
897 (autoload 'find-if "cl-seq" "\
898 Find the first item satisfying PREDICATE in SEQ.
899 Return the matching item, or nil if not found.
901 Keywords supported: :key :start :end :from-end
903 \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
905 (autoload 'find-if-not "cl-seq" "\
906 Find the first item not satisfying PREDICATE in SEQ.
907 Return the matching item, or nil if not found.
909 Keywords supported: :key :start :end :from-end
911 \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
913 (autoload 'position "cl-seq" "\
914 Find the first occurrence of ITEM in SEQ.
915 Return the index of the matching item, or nil if not found.
917 Keywords supported: :test :test-not :key :start :end :from-end
919 \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
921 (autoload 'position-if "cl-seq" "\
922 Find the first item satisfying PREDICATE in SEQ.
923 Return the index of the matching item, or nil if not found.
925 Keywords supported: :key :start :end :from-end
927 \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
929 (autoload 'position-if-not "cl-seq" "\
930 Find the first item not satisfying PREDICATE in SEQ.
931 Return the index of the matching item, or nil if not found.
933 Keywords supported: :key :start :end :from-end
935 \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
937 (autoload 'count "cl-seq" "\
938 Count the number of occurrences of ITEM in SEQ.
940 Keywords supported: :test :test-not :key :start :end
942 \(fn ITEM SEQ [KEYWORD VALUE]...)" nil nil)
944 (autoload 'count-if "cl-seq" "\
945 Count the number of items satisfying PREDICATE in SEQ.
947 Keywords supported: :key :start :end
949 \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
951 (autoload 'count-if-not "cl-seq" "\
952 Count the number of items not satisfying PREDICATE in SEQ.
954 Keywords supported: :key :start :end
956 \(fn PREDICATE SEQ [KEYWORD VALUE]...)" nil nil)
958 (autoload 'mismatch "cl-seq" "\
959 Compare SEQ1 with SEQ2, return index of first mismatching element.
960 Return nil if the sequences match. If one sequence is a prefix of the
961 other, the return value indicates the end of the shorter sequence.
963 Keywords supported: :test :test-not :key :start1 :end1 :start2 :end2 :from-end
965 \(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil)
967 (autoload 'search "cl-seq" "\
968 Search for SEQ1 as a subsequence of SEQ2.
969 Return the index of the leftmost element of the first match found;
970 return nil if there are no matches.
972 Keywords supported: :test :test-not :key :start1 :end1 :start2 :end2 :from-end
974 \(fn SEQ1 SEQ2 [KEYWORD VALUE]...)" nil nil)
976 (autoload 'sort* "cl-seq" "\
977 Sort the argument SEQ according to PREDICATE.
978 This is a destructive function; it reuses the storage of SEQ if possible.
980 Keywords supported: :key
982 \(fn SEQ PREDICATE [KEYWORD VALUE]...)" nil nil)
984 (autoload 'stable-sort "cl-seq" "\
985 Sort the argument SEQ stably according to PREDICATE.
986 This is a destructive function; it reuses the storage of SEQ if possible.
988 Keywords supported: :key
990 \(fn SEQ PREDICATE [KEYWORD VALUE]...)" nil nil)
992 (autoload 'merge "cl-seq" "\
993 Destructively merge the two sequences to produce a new sequence.
994 TYPE is the sequence type to return, SEQ1 and SEQ2 are the two argument
995 sequences, and PREDICATE is a `less-than' predicate on the elements.
997 Keywords supported: :key
999 \(fn TYPE SEQ1 SEQ2 PREDICATE [KEYWORD VALUE]...)" nil nil)
1001 (autoload 'member* "cl-seq" "\
1002 Find the first occurrence of ITEM in LIST.
1003 Return the sublist of LIST whose car is ITEM.
1005 Keywords supported: :test :test-not :key
1007 \(fn ITEM LIST [KEYWORD VALUE]...)" nil nil)
1009 (autoload 'member-if "cl-seq" "\
1010 Find the first item satisfying PREDICATE in LIST.
1011 Return the sublist of LIST whose car matches.
1013 Keywords supported: :key
1015 \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1017 (autoload 'member-if-not "cl-seq" "\
1018 Find the first item not satisfying PREDICATE in LIST.
1019 Return the sublist of LIST whose car matches.
1021 Keywords supported: :key
1023 \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1025 (autoload 'cl-adjoin "cl-seq" "\
1026 Not documented
1028 \(fn CL-ITEM CL-LIST &rest CL-KEYS)" nil nil)
1030 (autoload 'assoc* "cl-seq" "\
1031 Find the first item whose car matches ITEM in LIST.
1033 Keywords supported: :test :test-not :key
1035 \(fn ITEM LIST [KEYWORD VALUE]...)" nil nil)
1037 (autoload 'assoc-if "cl-seq" "\
1038 Find the first item whose car satisfies PREDICATE in LIST.
1040 Keywords supported: :key
1042 \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1044 (autoload 'assoc-if-not "cl-seq" "\
1045 Find the first item whose car does not satisfy PREDICATE in LIST.
1047 Keywords supported: :key
1049 \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1051 (autoload 'rassoc* "cl-seq" "\
1052 Find the first item whose cdr matches ITEM in LIST.
1054 Keywords supported: :test :test-not :key
1056 \(fn ITEM LIST [KEYWORD VALUE]...)" nil nil)
1058 (autoload 'rassoc-if "cl-seq" "\
1059 Find the first item whose cdr satisfies PREDICATE in LIST.
1061 Keywords supported: :key
1063 \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1065 (autoload 'rassoc-if-not "cl-seq" "\
1066 Find the first item whose cdr does not satisfy PREDICATE in LIST.
1068 Keywords supported: :key
1070 \(fn PREDICATE LIST [KEYWORD VALUE]...)" nil nil)
1072 (autoload 'union "cl-seq" "\
1073 Combine LIST1 and LIST2 using a set-union operation.
1074 The result list contains all items that appear in either LIST1 or LIST2.
1075 This is a non-destructive function; it makes a copy of the data if necessary
1076 to avoid corrupting the original LIST1 and LIST2.
1078 Keywords supported: :test :test-not :key
1080 \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1082 (autoload 'nunion "cl-seq" "\
1083 Combine LIST1 and LIST2 using a set-union operation.
1084 The result list contains all items that appear in either LIST1 or LIST2.
1085 This is a destructive function; it reuses the storage of LIST1 and LIST2
1086 whenever possible.
1088 Keywords supported: :test :test-not :key
1090 \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1092 (autoload 'intersection "cl-seq" "\
1093 Combine LIST1 and LIST2 using a set-intersection operation.
1094 The result list contains all items that appear in both LIST1 and LIST2.
1095 This is a non-destructive function; it makes a copy of the data if necessary
1096 to avoid corrupting the original LIST1 and LIST2.
1098 Keywords supported: :test :test-not :key
1100 \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1102 (autoload 'nintersection "cl-seq" "\
1103 Combine LIST1 and LIST2 using a set-intersection operation.
1104 The result list contains all items that appear in both LIST1 and LIST2.
1105 This is a destructive function; it reuses the storage of LIST1 and LIST2
1106 whenever possible.
1108 Keywords supported: :test :test-not :key
1110 \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1112 (autoload 'set-difference "cl-seq" "\
1113 Combine LIST1 and LIST2 using a set-difference operation.
1114 The result list contains all items that appear in LIST1 but not LIST2.
1115 This is a non-destructive function; it makes a copy of the data if necessary
1116 to avoid corrupting the original LIST1 and LIST2.
1118 Keywords supported: :test :test-not :key
1120 \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1122 (autoload 'nset-difference "cl-seq" "\
1123 Combine LIST1 and LIST2 using a set-difference operation.
1124 The result list contains all items that appear in LIST1 but not LIST2.
1125 This is a destructive function; it reuses the storage of LIST1 and LIST2
1126 whenever possible.
1128 Keywords supported: :test :test-not :key
1130 \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1132 (autoload 'set-exclusive-or "cl-seq" "\
1133 Combine LIST1 and LIST2 using a set-exclusive-or operation.
1134 The result list contains all items that appear in exactly one of LIST1, LIST2.
1135 This is a non-destructive function; it makes a copy of the data if necessary
1136 to avoid corrupting the original LIST1 and LIST2.
1138 Keywords supported: :test :test-not :key
1140 \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1142 (autoload 'nset-exclusive-or "cl-seq" "\
1143 Combine LIST1 and LIST2 using a set-exclusive-or operation.
1144 The result list contains all items that appear in exactly one of LIST1, LIST2.
1145 This is a destructive function; it reuses the storage of LIST1 and LIST2
1146 whenever possible.
1148 Keywords supported: :test :test-not :key
1150 \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1152 (autoload 'subsetp "cl-seq" "\
1153 Return true if LIST1 is a subset of LIST2.
1154 I.e., if every element of LIST1 also appears in LIST2.
1156 Keywords supported: :test :test-not :key
1158 \(fn LIST1 LIST2 [KEYWORD VALUE]...)" nil nil)
1160 (autoload 'subst-if "cl-seq" "\
1161 Substitute NEW for elements matching PREDICATE in TREE (non-destructively).
1162 Return a copy of TREE with all matching elements replaced by NEW.
1164 Keywords supported: :key
1166 \(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1168 (autoload 'subst-if-not "cl-seq" "\
1169 Substitute NEW for elts not matching PREDICATE in TREE (non-destructively).
1170 Return a copy of TREE with all non-matching elements replaced by NEW.
1172 Keywords supported: :key
1174 \(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1176 (autoload 'nsubst "cl-seq" "\
1177 Substitute NEW for OLD everywhere in TREE (destructively).
1178 Any element of TREE which is `eql' to OLD is changed to NEW (via a call
1179 to `setcar').
1181 Keywords supported: :test :test-not :key
1183 \(fn NEW OLD TREE [KEYWORD VALUE]...)" nil nil)
1185 (autoload 'nsubst-if "cl-seq" "\
1186 Substitute NEW for elements matching PREDICATE in TREE (destructively).
1187 Any element of TREE which matches is changed to NEW (via a call to `setcar').
1189 Keywords supported: :key
1191 \(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1193 (autoload 'nsubst-if-not "cl-seq" "\
1194 Substitute NEW for elements not matching PREDICATE in TREE (destructively).
1195 Any element of TREE which matches is changed to NEW (via a call to `setcar').
1197 Keywords supported: :key
1199 \(fn NEW PREDICATE TREE [KEYWORD VALUE]...)" nil nil)
1201 (autoload 'sublis "cl-seq" "\
1202 Perform substitutions indicated by ALIST in TREE (non-destructively).
1203 Return a copy of TREE with all matching elements replaced.
1205 Keywords supported: :test :test-not :key
1207 \(fn ALIST TREE [KEYWORD VALUE]...)" nil nil)
1209 (autoload 'nsublis "cl-seq" "\
1210 Perform substitutions indicated by ALIST in TREE (destructively).
1211 Any matching element of TREE is changed via a call to `setcar'.
1213 Keywords supported: :test :test-not :key
1215 \(fn ALIST TREE [KEYWORD VALUE]...)" nil nil)
1217 (autoload 'tree-equal "cl-seq" "\
1218 Return t if trees TREE1 and TREE2 have `eql' leaves.
1219 Atoms are compared by `eql'; cons cells are compared recursively.
1221 Keywords supported: :test :test-not :key
1223 \(fn TREE1 TREE2 [KEYWORD VALUE]...)" nil nil)
1225 ;;;***
1227 ;; Local Variables:
1228 ;; version-control: never
1229 ;; no-byte-compile: t
1230 ;; no-update-autoloads: t
1231 ;; End:
1233 ;; arch-tag: 08cc5aab-e992-47f6-992e-12a7428c1a0e
1234 ;;; cl-loaddefs.el ends here