Changeset 12724


Ignore:
Timestamp:
05/23/10 09:45:50 (13 years ago)
Author:
ehuelsmann
Message:

Remove access specifier from 2 interpreter specific functions
(now defaulting to package access), because they use a type
which is also package level.

File:
1 edited

Legend:

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

    r12648 r12724  
    702702   * This version is used by the interpreter.
    703703   */
    704   public static final LispObject nonLocalGo(Binding binding,
    705                                             LispObject tag)
    706 
     704  static final LispObject nonLocalGo(Binding binding,
     705                                     LispObject tag)
    707706  {
    708707    if (binding.env.inactive)
     
    739738   * This version is used by the interpreter.
    740739   */
    741   public static final LispObject nonLocalReturn(Binding binding,
    742                                                 Symbol block,
    743                                                 LispObject result)
    744 
     740  static final LispObject nonLocalReturn(Binding binding,
     741                                         Symbol block,
     742                                         LispObject result)
    745743  {
    746744    if (binding == null)
Note: See TracChangeset for help on using the changeset viewer.