Update history
(&mut self)
| 449 | |
| 450 | // Update history |
| 451 | fn histupdate(&mut self) |
| 452 | { |
| 453 | if let Some(i) = self.hist.pos |
| 454 | { |
| 455 | self.ln = self.hist.items[i].chars().collect(); |
| 456 | self.hist.pos = None; |
| 457 | } |
| 458 | } |
| 459 | |
| 460 | |
| 461 | // Input |
no outgoing calls
no test coverage detected