diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2023-08-28 15:38:18 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2023-08-28 15:38:18 -0700 |
commit | 5a86524791a55c3dc2b5b40366a8872e8d931781 (patch) | |
tree | 155387ec4098f6311dad2b9fc7b6629756ec7ebb | |
parent | 85c01678033b7f0e5c96d30914d0acc031296ce6 (diff) | |
download | basta-5a86524791a55c3dc2b5b40366a8872e8d931781.tar.gz basta-5a86524791a55c3dc2b5b40366a8872e8d931781.tar.bz2 basta-5a86524791a55c3dc2b5b40366a8872e8d931781.zip |
Typo fix.
- basta.prepare_term is calling a nonexistent function
called basta.query_terminal_line.
-rw-r--r-- | basta.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ basta.prepare_term() { if [ -z "$basta_prev_reserved_rows" ] ; then local realrows - basta.query_terminal_line realrows + basta.query_terminal_lines realrows basta_prev_reserved_rows=$((realrows - LINES)) printf "\n\033[A" else |