Changeset 1935


Ignore:
Timestamp:
05/24/03 15:08:10 (20 years ago)
Author:
piso
Message:

makeObject(): throw PackageError? if package is not found.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/j/src/org/armedbear/lisp/CharacterInputStream.java

    r1716 r1935  
    33 *
    44 * Copyright (C) 2003 Peter Graves
    5  * $Id: CharacterInputStream.java,v 1.31 2003-04-28 01:48:51 piso Exp $
     5 * $Id: CharacterInputStream.java,v 1.32 2003-05-24 15:08:10 piso Exp $
    66 *
    77 * This program is free software; you can redistribute it and/or
     
    568568            Package pkg = Packages.findPackage(packageName);
    569569            if (pkg == null)
    570                 throw new LispError("package \"" + packageName +
     570                throw new PackageError("package \"" + packageName +
    571571                    "\" not found");
    572572            Symbol symbol = pkg.findSymbolInPackage(symbolName);
Note: See TracChangeset for help on using the changeset viewer.