diff options
Diffstat (limited to 'gramscii.c')
-rw-r--r-- | gramscii.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -90,7 +90,7 @@ void commands(FILE *fc){ break; case 'b': mode = BOX; - get_box(fc); + get_box(fc, BOX_RECT); break; case 'A': autoend=1; case 'a': @@ -134,6 +134,10 @@ void commands(FILE *fc){ case 'r': read_file_at(fc, x, y); break; + case 'z': + mode = PAR; + get_box(fc, BOX_PARR); + break; case 'q': check_modified(fc);/** FALLTHROUGH **/ case 'Q': |