summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--GNUmakefile3
-rw-r--r--MLKReaderError.h2
-rw-r--r--MLKReaderError.m2
3 files changed, 4 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 9eb3844..cf29db8 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -20,7 +20,8 @@ include $(GNUSTEP_MAKEFILES)/common.make
TOOL_NAME = etoilisp
etoilisp_OBJC_FILES = MLKCons.m MLKDynamicContext.m MLKEndOfFileError.m \
MLKEnvironment.m MLKLinkedList.m MLKLispValue.m \
- MLKReader.m MLKSymbol.m MLKThrowException.m \
+ MLKReader.m MLKReaderError.m MLKSymbol.m \
+ MLKThrowException.m \
MLKUndefinedVariableException.m
BUNDLE_NAME = Test
diff --git a/MLKReaderError.h b/MLKReaderError.h
index 7c48911..bca72fb 100644
--- a/MLKReaderError.h
+++ b/MLKReaderError.h
@@ -26,7 +26,7 @@
MLKStream *stream;
}
--(MLKReaderError *) initWithStream:(id)aStream;
+-(MLKReaderError *) initWithStream:(MLKStream *)aStream;
-(void) dealloc;
@end
diff --git a/MLKReaderError.m b/MLKReaderError.m
index ce23176..0bfe9a1 100644
--- a/MLKReaderError.m
+++ b/MLKReaderError.m
@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#import "MLKEndOfFileError.h"
+#import "MLKReaderError.h"
@implementation MLKReaderError