source: trunk/j/src/org/armedbear/lisp/autoloads.lisp @ 3499

Last change on this file since 3499 was 3499, checked in by piso, 20 years ago

No longer need to autoload DOCUMENTATION.

File size: 3.0 KB
Line 
1;;; autoloads.lisp
2;;;
3;;; Copyright (C) 2003 Peter Graves
4;;; $Id: autoloads.lisp,v 1.12 2003-08-24 19:19:01 piso Exp $
5;;;
6;;; This program is free software; you can redistribute it and/or
7;;; modify it under the terms of the GNU General Public License
8;;; as published by the Free Software Foundation; either version 2
9;;; of the License, or (at your option) any later version.
10;;;
11;;; This program is distributed in the hope that it will be useful,
12;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with this program; if not, write to the Free Software
18;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20(in-package "SYSTEM")
21
22(autoload '(digit-char-p alphanumericp
23            char/= char< char> char<= char>=
24            char-not-equal)
25          "chars.lisp")
26(autoload '(string-upcase string-downcase string-capitalize
27            nstring-upcase nstring-downcase nstring-capitalize
28            string= string/= string-equal string-not-equal
29            string< string>
30            string<= string>=
31            string-lessp string-greaterp
32            string-not-lessp string-not-greaterp)
33          "strings.lisp")
34(autoload '(remprop getf get-properties copy-symbol) "symbol.lisp")
35(autoload '(open parse-integer))
36(autoload '(sort merge) "sort.lisp")
37(autoload 'tree-equal)
38(autoload 'make-hash-table)
39(autoload 'list-length)
40(autoload 'copy-list)
41(autoload 'revappend)
42(autoload '(butlast nbutlast) "butlast.lisp")
43(autoload 'ldiff)
44(autoload '(subst subst-if subst-if-not nsubst nsubst-if nsubst-if-not)
45          "subst.lisp")
46(autoload '(sublis nsublis) "sublis.lisp")
47(autoload '(member-if member-if-not) "member-if.lisp")
48(autoload 'tailp)
49(autoload 'adjoin)
50(autoload '(union nunion
51            intersection nintersection
52            set-difference nset-difference
53            set-exclusive-or nset-exclusive-or
54            subsetp)
55          "sets.lisp")
56(autoload '(assoc assoc-if assoc-if-not rassoc rassoc-if rassoc-if-not
57            acons pairlis copy-alist)
58          "assoc.lisp")
59(autoload '(mapc mapcan mapl maplist mapcon) "map1.lisp")
60(autoload 'make-sequence)
61(autoload '(copy-seq fill replace))
62(autoload '(map map-into))
63(autoload 'reduce)
64(autoload '(delete delete-if delete-if-not) "delete.lisp")
65(autoload '(remove remove-if remove-if-not) "remove.lisp")
66(autoload '(remove-duplicates delete-duplicates))
67(autoload '(substitute substitute-if substitute-if-not) "substitute.lisp")
68(autoload '(nsubstitute nsubstitute-if nsubstitute-if-not) "nsubstitute.lisp")
69(autoload '(position position-if position-if-not find find-if find-if-not)
70          "find.lisp")
71(autoload '(count count-if count-if-not) "count.lisp")
72(autoload '(mismatch search))
73(autoload 'make-string)
74(autoload 'make-pathname)
75(autoload '(floor ceiling round rem ftruncate ffloor fceiling fround
76            rational rationalize)
77          "numbers.lisp")
Note: See TracBrowser for help on using the repository browser.