diff options
Diffstat (limited to 'core/readline/display-null-prompt.patch')
| -rw-r--r-- | core/readline/display-null-prompt.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/readline/display-null-prompt.patch b/core/readline/display-null-prompt.patch new file mode 100644 index 0000000..6566539 --- /dev/null +++ b/core/readline/display-null-prompt.patch @@ -0,0 +1,15 @@ +*** ../readline-8.3/display.c Fri May 2 09:20:32 2025 +--- display.c Sun Jul 6 17:16:28 2025 +*************** +*** 784,788 **** + /* Useful shorthand used by rl_redisplay, update_line, rl_move_cursor_relative */ + #define INVIS_FIRST() (local_prompt_invis_chars[0]) +! #define WRAP_OFFSET(line, offset) ((line <= prompt_last_screen_line) ? local_prompt_invis_chars[line] : 0) + + #define W_OFFSET(line, offset) ((line) == 0 ? offset : 0) +--- 784,788 ---- + /* Useful shorthand used by rl_redisplay, update_line, rl_move_cursor_relative */ + #define INVIS_FIRST() (local_prompt_invis_chars[0]) +! #define WRAP_OFFSET(line, offset) ((line <= prompt_last_screen_line && local_prompt_invis_chars) ? local_prompt_invis_chars[line] : 0) + + #define W_OFFSET(line, offset) ((line) == 0 ? offset : 0) |
