cvsuser     02/11/14 21:26:36

  Modified:    .        interpreter.c
  Log:
  fixed typos
  
  Revision  Changes    Path
  1.116     +7 -7      parrot/interpreter.c
  
  Index: interpreter.c
  ===================================================================
  RCS file: /cvs/public/parrot/interpreter.c,v
  retrieving revision 1.115
  retrieving revision 1.116
  diff -u -w -r1.115 -r1.116
  --- interpreter.c     12 Nov 2002 14:47:16 -0000      1.115
  +++ interpreter.c     15 Nov 2002 05:26:36 -0000      1.116
  @@ -1,7 +1,7 @@
   /* interpreter.c
    *  Copyright: (When this is determined...it will go here)
    *  CVS Info
  - *     $Id: interpreter.c,v 1.115 2002/11/12 14:47:16 leo Exp $
  + *     $Id: interpreter.c,v 1.116 2002/11/15 05:26:36 sfink Exp $
    *  Overview:
    *     The interpreter api handles running the operations
    *  Data Structure and Algorithms:
  @@ -233,7 +233,7 @@
       /* if we fall out of runloop with restart, there is
        * currently no way, to continue in JIT, so stop it
        *
  -     * This is borken too, but better as endless loops
  +     * This is broken too, but better as endless loops
        */
   /*    Interp_flags_CLEAR(interpreter, PARROT_JIT_FLAG); */
   #endif
  @@ -434,7 +434,7 @@
       /* Set up the memory allocation system */
       mem_setup_allocator(interpreter);
   
  -    /* intialize classes */
  +    /* initialize classes */
       Parrot_init(interpreter, 0);
   
       /* Need an empty stash */
  @@ -466,8 +466,8 @@
       interpreter->ctx.num_reg_base->free = FRAMES_PER_NUM_REG_CHUNK;
       interpreter->ctx.string_reg_base->free = FRAMES_PER_STR_REG_CHUNK;
       interpreter->ctx.pmc_reg_base->free = FRAMES_PER_PMC_REG_CHUNK;
  -    /* the SET_NULL macros are only for system, where a NULL pointer
  -     * isn't represented by zeroes, so don't use these, for resetting
  +    /* the SET_NULL macros are only for systems where a NULL pointer
  +     * isn't represented by zeroes, so don't use these for resetting
        * non-null pointers
        */
       SET_NULL(interpreter->ctx.int_reg_base->next);
  @@ -515,13 +515,13 @@
   
       SET_NULL_P(interpreter->code, struct PackFile *);
       SET_NULL_P(interpreter->profile, ProfData *);
  -    SET_NULL_P(interpreter->predref_code, void **);
  +    SET_NULL_P(interpreter->prederef_code, void **);
       SET_NULL(interpreter->jit_info);
   
       /* Done. Return and be done with it */
   
       /* Okay, we've finished doing anything that might trigger GC.
  -     * Actually, we could enbale DOD/GC earlier, but here all setup is
  +     * Actually, we could enable DOD/GC earlier, but here all setup is
        * done
        */
       Parrot_unblock_DOD(interpreter);
  
  
  


Reply via email to