Changeset 13866


Ignore:
Timestamp:
02/07/12 16:36:32 (11 years ago)
Author:
Mark Evenson
Message:

Promote JAVA:JARRAY-FROM-LIST to the public API.

Re-run grovel on the docstrings.

Location:
trunk/abcl
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/doc/manual/extensions.tex

    r13858 r13866  
    8686
    8787\begin{adjustwidth}{5em}{5em}
    88 not-documented
     88Kills the process.
    8989\end{adjustwidth}
    9090
  • trunk/abcl/doc/manual/java.tex

    r13864 r13866  
    115115
    116116\begin{adjustwidth}{5em}{5em}
    117 not-documented
     117Returns the name of the Java class of OBJECT. If the NAME argument is
     118  supplied, verifies that OBJECT is an instance of the named class. The name
     119  of the class or nil is always returned as a second value.
    118120\end{adjustwidth}
    119121
     
    354356
    355357\begin{adjustwidth}{5em}{5em}
    356 not-documented
     358When called with one argument, returns the name of the Java class
     359  designated by CLASS-REF. When called with two arguments, tests
     360  whether CLASS-REF matches NAME.
     361\end{adjustwidth}
     362
     363\paragraph{}
     364\label{JAVA:JARRAY-FROM-LIST}
     365\index{JARRAY-FROM-LIST}
     366--- Function: \textbf{jarray-from-list} [\textbf{java}] \textit{list}
     367
     368\begin{adjustwidth}{5em}{5em}
     369Return a Java array from LIST whose type is inferred from the first element.
     370
     371For more control over the type of the array, use JNEW-ARRAY-FROM-LIST.
    357372\end{adjustwidth}
    358373
  • trunk/abcl/doc/manual/threads.tex

    r13858 r13866  
    55
    66\begin{adjustwidth}{5em}{5em}
    7 not-documented
     7Returns non-NIL if the mailbox can be read from, NIL otherwise.
    88\end{adjustwidth}
    99
  • trunk/abcl/src/org/armedbear/lisp/autoloads.lisp

    r13785 r13866  
    251251(export 'jnew-array-from-list "JAVA")
    252252(autoload 'jnew-array-from-list "java")
     253(export 'jarray-from-list "JAVA")
     254(autoload 'jarray-from-list "java")
    253255(export 'jclass-constructors "JAVA")
    254256(autoload 'jclass-constructors "java")
Note: See TracChangeset for help on using the changeset viewer.