| 1154 | } |
| 1155 | |
| 1156 | CCMD (history) |
| 1157 | { |
| 1158 | struct History *hist = HistTail; |
| 1159 | |
| 1160 | while (hist) |
| 1161 | { |
| 1162 | Printf (" %s\n", hist->String.GetChars()); |
| 1163 | hist = hist->Newer; |
| 1164 | } |
| 1165 | } |
| 1166 | |
| 1167 | CCMD (clear) |
| 1168 | { |
nothing calls this directly
no test coverage detected