SmartEiffel doesn't have is_space.
This commit is contained in:
@@ -381,7 +381,7 @@ feature {NONE} -- Implementation
|
|||||||
end
|
end
|
||||||
from
|
from
|
||||||
until
|
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')
|
not actual.is_equal ('%U') or not actual.is_equal ('%T')
|
||||||
or not actual.is_equal ('%N') or not has_next
|
or not actual.is_equal ('%N') or not has_next
|
||||||
loop
|
loop
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ feature -- Commands
|
|||||||
-- Remove withe spaces
|
-- Remove withe spaces
|
||||||
do
|
do
|
||||||
from
|
from
|
||||||
until not actual.is_space or not has_next
|
until actual /= ' ' or not has_next
|
||||||
loop
|
loop
|
||||||
next
|
next
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user