From afdcfb08ced80634b0a2766f79a9f9327bcaa4f7 Mon Sep 17 00:00:00 2001 From: olle Date: Mon, 28 Mar 2005 21:34:36 +0000 Subject: [PATCH] * Disabled warning for undefined compile time var in mode macpas, since it did not work. --- compiler/scanner.pas | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/compiler/scanner.pas b/compiler/scanner.pas index 84fc02708e..9f60a9cbd3 100644 --- a/compiler/scanner.pas +++ b/compiler/scanner.pas @@ -424,9 +424,12 @@ implementation end else begin + (* + // To make this work, there must be some kind of type checking here... if m_mac in aktmodeswitches then Message1(scan_e_error_macro_undefined, result) else + *) break; end; @@ -3348,7 +3351,10 @@ exit_label: end. { $Log$ - Revision 1.103 2005-03-20 22:36:45 olle + Revision 1.104 2005-03-28 21:34:36 olle + * Disabled warning for undefined compile time var in mode macpas, since it did not work. + + Revision 1.103 2005/03/20 22:36:45 olle * Cleaned up handling of source file extension. + Added support for .p extension for macos and darwin