Smalltalk: empty lines in abbrev.stc are ignored jv
authorJan Vrany <jan.vrany@fit.cvut.cz>
Mon, 14 Mar 2011 12:10:14 +0000
branchjv
changeset 17829 456b0a794264
parent 17828 80569919f447
child 17830 92d4d6a6f813
Smalltalk: empty lines in abbrev.stc are ignored
Smalltalk.st
abbrev.stc
stx_libbasic.st
--- a/Smalltalk.st	Tue Mar 08 02:57:52 2011 +0000
+++ b/Smalltalk.st	Mon Mar 14 12:10:14 2011 +0000
@@ -7056,7 +7056,7 @@
     [aStream atEnd] whileFalse:[
         line := aStream nextLine.
         lineNo := lineNo + 1.
-        line notNil ifTrue:[
+        line isNilOrEmptyCollection not ifTrue:[
             (line startsWith:'#') ifFalse:[
 
                 "/ must do it manually, caring for quoted strings.
@@ -7550,7 +7550,7 @@
 !Smalltalk class methodsFor:'documentation'!
 
 version
-    ^ '$Id: Smalltalk.st 10618 2011-03-06 22:17:00Z vranyj1 $'
+    ^ '$Id: Smalltalk.st 10622 2011-03-14 12:10:14Z vranyj1 $'
 !
 
 version_CVS
@@ -7558,5 +7558,5 @@
 !
 
 version_SVN
-    ^ '$Id: Smalltalk.st 10618 2011-03-06 22:17:00Z vranyj1 $'
+    ^ '$Id: Smalltalk.st 10622 2011-03-14 12:10:14Z vranyj1 $'
 ! !
--- a/abbrev.stc	Tue Mar 08 02:57:52 2011 +0000
+++ b/abbrev.stc	Mon Mar 14 12:10:14 2011 +0000
@@ -369,7 +369,5 @@
 Symbol Symbol stx:libbasic 'Collections-Text' 0
 Unicode16String Unicode16String stx:libbasic 'Collections-Text' 0
 CharacterEncoderImplementations::EBCDIC CharacterEncoderImplementations__EBCDIC stx:libbasic 'Collections-Text-Encodings' 0
-
 SameForAllNotification SameForAllNotification stx:libbasic 'Kernel-Exceptions-Notifications' 1
-UtcTimestamp UtcTimestamp stx:libbasic 'Magnitude-Time' 0
-
+UtcTimestamp UtcTimestamp stx:libbasic 'Magnitude-Time' 0
\ No newline at end of file
--- a/stx_libbasic.st	Tue Mar 08 02:57:52 2011 +0000
+++ b/stx_libbasic.st	Mon Mar 14 12:10:14 2011 +0000
@@ -529,13 +529,13 @@
     "Return a SVN revision number of myself.
      This number is updated after a commit"
 
-    ^ "$SVN-Revision:"'10617M'"$"
+    ^ "$SVN-Revision:"'10621M'"$"
 ! !
 
 !stx_libbasic class methodsFor:'documentation'!
 
 version
-    ^ '$Id: stx_libbasic.st 10618 2011-03-06 22:17:00Z vranyj1 $'
+    ^ '$Id: stx_libbasic.st 10622 2011-03-14 12:10:14Z vranyj1 $'
 !
 
 version_CVS
@@ -543,7 +543,7 @@
 !
 
 version_SVN
-    ^ '$Id: stx_libbasic.st 10618 2011-03-06 22:17:00Z vranyj1 $'
+    ^ '$Id: stx_libbasic.st 10622 2011-03-14 12:10:14Z vranyj1 $'
 ! !