SmartEiffel doesn't have is_space.

This commit is contained in:
berend
2008-08-27 04:29:42 +00:00
parent 31619fc88e
commit d940da7b13
2 changed files with 2 additions and 2 deletions

View File

@@ -381,7 +381,7 @@ feature {NONE} -- Implementation
end
from
until
not actual.is_space or not actual.is_equal ('%R') or
not actual.is_equal (' ') or not actual.is_equal ('%R') or
not actual.is_equal ('%U') or not actual.is_equal ('%T')
or not actual.is_equal ('%N') or not has_next
loop

View File

@@ -74,7 +74,7 @@ feature -- Commands
-- Remove withe spaces
do
from
until not actual.is_space or not has_next
until actual /= ' ' or not has_next
loop
next
end