Changeset 14608


Ignore:
Timestamp:
01/22/14 14:37:36 (9 years ago)
Author:
Mark Evenson
Message:

Untabify.

File:
1 edited

Legend:

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

    r14579 r14608  
    655655        }
    656656        public LispObject getParts() {
    657       Cons result = new Cons(NIL);
    658       return result
    659     .push(new Symbol("INITIAL-SEGMENT-SIZE"))
    660                     .push(LispInteger.getInstance(LispThread.INITIAL_SEGMENT_SIZE))
    661     .push(new Symbol("SEGMENT-SIZE"))
    662                     .push(LispInteger.getInstance(LispThread.SEGMENT_SIZE)).nreverse();
     657        Cons result = new Cons(NIL);
     658        return result
     659          .push(new Symbol("INITIAL-SEGMENT-SIZE"))
     660            .push(LispInteger.getInstance(LispThread.INITIAL_SEGMENT_SIZE))
     661          .push(new Symbol("SEGMENT-SIZE"))
     662            .push(LispInteger.getInstance(LispThread.SEGMENT_SIZE)).nreverse();
    663663        }
    664664    }
     
    11801180    private static final Primitive THREAD_ALIVE_P =
    11811181        new Primitive("thread-alive-p", PACKAGE_THREADS, true, "thread",
    1182           "Boolean predicate whether THREAD is alive.")
     1182              "Boolean predicate whether THREAD is alive.")
    11831183    {
    11841184        @Override
     
    13181318    private static final Primitive INTERRUPT_THREAD =
    13191319        new Primitive("interrupt-thread", PACKAGE_THREADS, true,
    1320           "thread function &rest args",
    1321           "Interrupts THREAD and forces it to apply FUNCTION to ARGS.\nWhen the function returns, the thread's original computation continues. If  multiple interrupts are queued for a thread, they are all run, but the order is not guaranteed.")
     1320              "thread function &rest args",
     1321              "Interrupts THREAD and forces it to apply FUNCTION to ARGS.\nWhen the function returns, the thread's original computation continues. If  multiple interrupts are queued for a thread, they are all run, but the order is not guaranteed.")
    13221322    {
    13231323        @Override
Note: See TracChangeset for help on using the changeset viewer.