Rev 1298 | Rev 1316 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1298 | Rev 1312 | ||
---|---|---|---|
Line 267... | Line 267... | ||
267 | case '\t': |
267 | case '\t': |
268 | invert_cursor(); |
268 | invert_cursor(); |
269 | do { |
269 | do { |
270 | draw_char(' '); |
270 | draw_char(' '); |
271 | position++; |
271 | position++; |
272 | } while (position % 8); |
272 | } while ((position % 8) && position < columns * rows); |
273 | break; |
273 | break; |
274 | default: |
274 | default: |
275 | draw_char(ch); |
275 | draw_char(ch); |
276 | position++; |
276 | position++; |
277 | } |
277 | } |