* TESetSelect flushes out all the pending key strokes. I hate it. */
| 1055 | * TESetSelect flushes out all the pending key strokes. I hate it. |
| 1056 | */ |
| 1057 | static void |
| 1058 | topl_set_select(short selStart, short selEnd) |
| 1059 | { |
| 1060 | TEDeactivate(top_line); |
| 1061 | (*top_line)->selStart = selStart; |
| 1062 | (*top_line)->selEnd = selEnd; |
| 1063 | TEActivate(top_line); |
| 1064 | } |
| 1065 | |
| 1066 | static void |
| 1067 | topl_replace(char *new_ans) |
no outgoing calls
no test coverage detected