Skip to content

Commit

Permalink
allow '#' characters by simply doubling them
Browse files Browse the repository at this point in the history
  • Loading branch information
cadrian committed Oct 28, 2015
1 parent efceea3 commit 668e0fa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib/string/internal/partially_filled_string.e
Expand Up @@ -45,6 +45,9 @@ feature {ANY}
save_i := i
state := 2
accu := 0
elseif c = '#' then
tagged_out_memory.extend('#')
state := 0
else
tagged_out_memory.extend('#')
i := i - 1
Expand Down

0 comments on commit 668e0fa

Please sign in to comment.