Hi Paolo,

some small typo fixes and a fix to make "make check" pass again.

>From 1b6558fd56bb835825da72d87c1e60a50428353c Mon Sep 17 00:00:00 2001
From: Holger Hans Peter Freyther <[email protected]>
Date: Tue, 28 Sep 2010 02:47:00 +0800
Subject: [PATCH 1/3] libgst/oop.c: Fix a typo.

---
 libgst/ChangeLog |    4 ++++
 libgst/oop.c     |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/libgst/ChangeLog b/libgst/ChangeLog
index 64e5f64..689f82d 100644
--- a/libgst/ChangeLog
+++ b/libgst/ChangeLog
@@ -1,3 +1,7 @@
+2010-09-27  Holger Hans Peter Freyther  <[email protected]>
+
+	* libgst/oop.c: Fix a typo.
+
 2010-09-27  Paolo Bonzini <[email protected]>
 
 	* libgst/gst-parse.c: Correctly handle scoped methods within
diff --git a/libgst/oop.c b/libgst/oop.c
index 06d0249..f5b885b 100644
--- a/libgst/oop.c
+++ b/libgst/oop.c
@@ -95,7 +95,7 @@ int _gst_gc_message = true;
 /* This is != 0 in the middle of a GC.  */
 int _gst_gc_running = 0;
 
-/* These is the memory area which holds the object table.  */
+/* This is the memory area which holds the object table.  */
 static heap oop_heap;
 
 /* This vector holds the storage for all the Character objects in the
-- 
1.7.3

>From 242cb5ce9d9e305ba47a9406d78a3ea0b0931ce2 Mon Sep 17 00:00:00 2001
From: Holger Hans Peter Freyther <[email protected]>
Date: Tue, 28 Sep 2010 04:40:50 +0800
Subject: [PATCH 2/3] Update test cases, remove "Recompiling" messages.

---
 ChangeLog        |    5 +++++
 tests/classes.ok |    3 ---
 tests/mutate.ok  |   10 ----------
 3 files changed, 5 insertions(+), 13 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 7d7639d..9f41912 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-09-27  Holger Hans Peter Freyther  <[email protected]>
+
+	* tests/classes.ok: Remove "Recompiling" messages.
+	* tests/mutate.ok: Remove "Recompiling" messages.
+
 2010-09-27  Paolo Bonzini <[email protected]>
 
 	* kernel/Behavior.st: Remove "Recompiling" messages.
diff --git a/tests/classes.ok b/tests/classes.ok
index c4488c7..31674f2 100644
--- a/tests/classes.ok
+++ b/tests/classes.ok
@@ -164,7 +164,6 @@ Execution begins...
 returned value is 34
 
 Execution begins...
-Recompiling classes...
 returned value is 3
 
 Execution begins...
@@ -174,7 +173,6 @@ Execution begins...
 returned value is 34
 
 Execution begins...
-Recompiling classes...
 returned value is 2
 
 Execution begins...
@@ -190,7 +188,6 @@ Execution begins...
 returned value is 34
 
 Execution begins...
-Recompiling classes...
 returned value is 3
 
 Execution begins...
diff --git a/tests/mutate.ok b/tests/mutate.ok
index 83f3300..7ef34d0 100644
--- a/tests/mutate.ok
+++ b/tests/mutate.ok
@@ -21,7 +21,6 @@ Execution begins...
 returned value is Association new "<0>"
 
 Execution begins...
-Recompiling classes...
 returned value is C
 
 Execution begins...
@@ -32,7 +31,6 @@ Execution begins...
 returned value is Association new "<0>"
 
 Execution begins...
-Recompiling classes...
 returned value is C
 
 Execution begins...
@@ -43,7 +41,6 @@ Execution begins...
 returned value is Association new "<0>"
 
 Execution begins...
-Recompiling classes...
 returned value is C
 
 Execution begins...
@@ -54,7 +51,6 @@ Execution begins...
 returned value is Association new "<0>"
 
 Execution begins...
-Recompiling classes...
 returned value is C
 
 Execution begins...
@@ -65,7 +61,6 @@ Execution begins...
 returned value is Association new "<0>"
 
 Execution begins...
-Recompiling classes...
 returned value is C
 
 Execution begins...
@@ -73,7 +68,6 @@ Execution begins...
 returned value is Association new "<0>"
 
 Execution begins...
-Recompiling classes...
 returned value is C
 
 Execution begins...
@@ -84,7 +78,6 @@ Execution begins...
 returned value is Association new "<0>"
 
 Execution begins...
-Recompiling classes...
 returned value is C
 
 Execution begins...
@@ -96,12 +89,10 @@ returned value is CompiledMethod new: 4 "<0>"
 
 Execution begins...
 returned value is true
-Recompiling classes...
 
 Execution begins...
 Smalltalk
 returned value is SystemDictionary new: 512 "<0>"
-Recompiling classes...
 
 Execution begins...
 (#a #b #c )
@@ -116,5 +107,4 @@ Execution begins...
 returned value is Array new: 2 "<0>"
 
 Execution begins...
-Recompiling classes...
 returned value is 'abc'
-- 
1.7.3

>From 3578499adf74f4401d95eff4a954de9f6d83cb9f Mon Sep 17 00:00:00 2001
From: Holger Hans Peter Freyther <[email protected]>
Date: Tue, 28 Sep 2010 04:42:59 +0800
Subject: [PATCH 3/3] Fix a typo in kernel/FileDescr.st.

---
 ChangeLog           |    4 ++++
 kernel/FileDescr.st |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 9f41912..b74f16a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2010-09-27  Holger Hans Peter Freyther  <[email protected]>
 
+	* kernel/FileDescr.st: Fix a typo.
+
+2010-09-27  Holger Hans Peter Freyther  <[email protected]>
+
 	* tests/classes.ok: Remove "Recompiling" messages.
 	* tests/mutate.ok: Remove "Recompiling" messages.
 
diff --git a/kernel/FileDescr.st b/kernel/FileDescr.st
index 54c29e2..486a2ae 100644
--- a/kernel/FileDescr.st
+++ b/kernel/FileDescr.st
@@ -1041,7 +1041,7 @@ do arbitrary processing on the files.'>
     ]
 
     nextPutInt64: anInteger [
-	"Store anInteger (range: -2^63..2^64-1) on the byte array as 4 bytes"
+	"Store anInteger (range: -2^63..2^64-1) on the byte array as 8 bytes"
 
 	<category: 'binary I/O'>
 	self nextPutBytes: 8 of: anInteger
-- 
1.7.3

_______________________________________________
help-smalltalk mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-smalltalk

Reply via email to