Index: Makefile.in =================================================================== diff -u -re61fc14f5c25172a1d1f93bea03be54a772fb4b5 -rfe19549734064c3a57866e7e47743ec787f647e5 --- Makefile.in (.../Makefile.in) (revision e61fc14f5c25172a1d1f93bea03be54a772fb4b5) +++ Makefile.in (.../Makefile.in) (revision fe19549734064c3a57866e7e47743ec787f647e5) @@ -347,6 +347,7 @@ $(TCLSH) $(src_test_dir_native)/method-modifiers.xotcl -libdir $(PLATFORM_DIR) $(TESTFLAGS) $(TCLSH) $(src_test_dir_native)/varresolutiontest.xotcl -libdir $(PLATFORM_DIR) $(TESTFLAGS) $(TCLSH) $(src_test_dir_native)/info-method.xotcl -libdir $(PLATFORM_DIR) $(TESTFLAGS) + $(TCLSH) $(src_test_dir_native)/parameters.xotcl -libdir $(PLATFORM_DIR) $(TESTFLAGS) $(TCLSH) $(src_test_dir_native)/interceptor-slot.xotcl -libdir $(PLATFORM_DIR) $(TESTFLAGS) $(TCLSH) $(src_test_dir_native)/aliastest.xotcl -libdir $(PLATFORM_DIR) $(TESTFLAGS) $(TCLSH) $(src_test_dir_native)/protected.xotcl -libdir $(PLATFORM_DIR) $(TESTFLAGS) Index: doc/index.html =================================================================== diff -u -r1ddb61a407f327672ce64aa1c1610e7043c10ec7 -rfe19549734064c3a57866e7e47743ec787f647e5 --- doc/index.html (.../index.html) (revision 1ddb61a407f327672ce64aa1c1610e7043c10ec7) +++ doc/index.html (.../index.html) (revision fe19549734064c3a57866e7e47743ec787f647e5) @@ -23,7 +23,7 @@
Index: doc/migration1-2.html
===================================================================
diff -u -r210eab6d9149846d5d6a6a8e0fa74e232ca5b6de -rfe19549734064c3a57866e7e47743ec787f647e5
--- doc/migration1-2.html (.../migration1-2.html) (revision 210eab6d9149846d5d6a6a8e0fa74e232ca5b6de)
+++ doc/migration1-2.html (.../migration1-2.html) (revision fe19549734064c3a57866e7e47743ec787f647e5)
@@ -173,16 +173,16 @@
C instproc foo args {...}
C instproc bar args {
my foo 1 2 3 ;# invoke own method
- o baz ;# invoke others method
+ o baz ;# invoke others method
}
Object o
o proc baz {} {...}
Class create C {
:method foo args {...}
:method bar args {
- :foo 1 2 3 ;# invoke own method
- o baz ;# invoke others method
+ :foo 1 2 3 ;# invoke own method
+ o baz ;# invoke others method
}
}
Object create o {
@@ -688,5 +688,5 @@
- Last modified: Fri Jan 15 13:15:37 CET 2010
+ Last modified: Fri Jan 15 13:42:35 CET 2010