Changeset 14026


Ignore:
Timestamp:
07/31/12 12:23:25 (11 years ago)
Author:
ehuelsmann
Message:

Add a few missing autoloaders.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/Autoload.java

    r13999 r14026  
    545545        autoload(PACKAGE_SYS, "%generic-function-lambda-list", "StandardGenericFunction", true);
    546546        autoload(PACKAGE_SYS, "%generic-function-name", "StandardGenericFunction", true);
     547        autoload(PACKAGE_SYS, "set-generic-function-declarations", "StandardGenericFunction", true);
    547548        autoload(PACKAGE_SYS, "%get-output-stream-bytes", "ByteArrayOutputStream"); //AS 20090325
    548549        autoload(PACKAGE_SYS, "%get-output-stream-array", "ByteArrayOutputStream");
     
    569570        autoload(PACKAGE_SYS, "%set-generic-function-name", "StandardGenericFunction", true);
    570571        autoload(PACKAGE_SYS, "%set-gf-required-args", "StandardGenericFunction", true);
     572        autoload(PACKAGE_SYS, "%set-gf-optional-args", "StandardGenericFunction", true);
     573        autoload(PACKAGE_SYS, "gf-required-args", "StandardGenericFunction", true);
     574        autoload(PACKAGE_SYS, "gf-optional-args", "StandardGenericFunction", true);
     575        autoload(PACKAGE_SYS, "%init-eql-specializations", "StandardGenericFunction", true);
     576        autoload(PACKAGE_SYS, "%get-arg-specialization", "StandardGenericFunction", true);
    571577        autoload(PACKAGE_SYS, "%set-symbol-macro", "Primitives");
    572578        autoload(PACKAGE_SYS, "%simple-bit-vector-bit-and", "SimpleBitVector");
Note: See TracChangeset for help on using the changeset viewer.