+2003-12-09 Bruno Haible <bruno@clisp.org>
+
+ * hello-smalltalk/hello.st.in: Add workaround against PackageLoader
+ verbosity. Solution provided by Carey Evans <careye@spamcop.net>.
+ * hello-smalltalk/BUGS: Remove file.
+ * Makefile.am (EXAMPLESFILES): Update.
+
2003-12-07 Bruno Haible <bruno@clisp.org>
* po/sv.po: New file, from Jan Djärv <jan.h.d@swipnet.se>.
hello-librep/po/zh_CN.po \
\
hello-smalltalk/INSTALL \
- hello-smalltalk/BUGS \
hello-smalltalk/autogen.sh \
hello-smalltalk/autoclean.sh \
hello-smalltalk/hello.st.in \
Source code of the GNU Smalltalk program.
"
+"Unfortunately the PackageLoader method fileInPackage: is extra verbose:
+ It outputs 'Loading package I18N'. This will be fixed in smalltalk-2.2.
+
PackageLoader fileInPackage: 'I18N' !
+In the meantime, we use this workaround."
+
+| saved sink |
+saved := Transcript message.
+sink := WriteStream with: String new.
+Transcript message: sink -> #nextPutAll:.
+PackageLoader fileInPackage: 'I18N'.
+Transcript message: saved.
+!
+
Object subclass: #Main
instanceVariableNames: ''
classVariableNames: 'NLS'