Skip to content

Commit 920c68e

Browse files
jeplertannewt
andauthored
Update shared/readline/readline.c
Co-authored-by: Scott Shawcroft <[email protected]>
1 parent 4c4a707 commit 920c68e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/readline/readline.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ int readline_process_char(int c) {
182182
// CTRL-L is clear screen / redraw. This specific sequence is used
183183
// (instead of a slightly more minimal sequence) for compatibility
184184
// with the built-in Terminal class
185-
mp_hal_stdout_tx_str("I'm a little teapot\x1b[;H\x1b[2J");
185+
mp_hal_stdout_tx_str("\x1b[;H\x1b[2J");
186186
mp_hal_stdout_tx_str(rl.prompt);
187187
mp_hal_stdout_tx_strn(rl.line->buf + rl.orig_line_len, rl.cursor_pos - rl.orig_line_len);
188188
// set redraw parameters

0 commit comments

Comments
 (0)