No trimming of the buffer
This commit is contained in:
@@ -1583,7 +1583,7 @@ impl MachineState {
|
||||
return Ok(());
|
||||
}
|
||||
};
|
||||
let chars = buffer.trim().chars().map(|c| Addr::Char(c));
|
||||
let chars = buffer.chars().map(|c| Addr::Char(c));
|
||||
let char_list = Addr::HeapCell(self.heap.to_list(chars));
|
||||
|
||||
self.unify(char_list, a2);
|
||||
|
||||
Reference in New Issue
Block a user