| 2734 | // |
| 2735 | |
| 2736 | static void return_char( SSHORT c) |
| 2737 | { |
| 2738 | |
| 2739 | --position; |
| 2740 | --line_position; |
| 2741 | |
| 2742 | // note putting back a new line results in incorrect line_position value |
| 2743 | |
| 2744 | if (c == '\n') { |
| 2745 | --line_global; |
| 2746 | } |
| 2747 | |
| 2748 | *input_char++ = (TEXT) c; |
| 2749 | } |
| 2750 | |
| 2751 | |
| 2752 | //____________________________________________________________ |
no outgoing calls
no test coverage detected