diff options
author | KatolaZ <katolaz@freaknet.org> | 2019-08-08 08:39:04 +0100 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2019-08-08 08:39:04 +0100 |
commit | c16e74036e791b2c1f9c19841fc75a60067aefec (patch) | |
tree | 50357c892796256d0acdc233641576d07afcf085 /gramscii.c | |
parent | 9127db5e322c1b0cd57adf90e8cfefad66020fe2 (diff) |
fix bug with global movements in arrow mode
Diffstat (limited to 'gramscii.c')
-rw-r--r-- | gramscii.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ void commands(FILE *fc){ char c; while((c=fgetc(fc))!=EOF){ - if (!change_style(c) && !move_around(c, fc)){ + if (!change_style(c) && !move_around(c, fc, 1)){ switch(c){ case 'i': mode = TEXT; |