aboutsummaryrefslogtreecommitdiff
path: root/miscutils/less.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/less.c')
-rw-r--r--miscutils/less.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/less.c b/miscutils/less.c
index f37c80ad8..241f7f8ba 100644
--- a/miscutils/less.c
+++ b/miscutils/less.c
@@ -137,7 +137,7 @@
137#define ESC "\033" 137#define ESC "\033"
138/* The escape codes for highlighted and normal text */ 138/* The escape codes for highlighted and normal text */
139#define HIGHLIGHT ESC"[7m" 139#define HIGHLIGHT ESC"[7m"
140#define NORMAL ESC"[0m" 140#define NORMAL ESC"[m"
141/* The escape code to home and clear to the end of screen */ 141/* The escape code to home and clear to the end of screen */
142#define CLEAR ESC"[H"ESC"[J" 142#define CLEAR ESC"[H"ESC"[J"
143/* The escape code to clear to the end of line */ 143/* The escape code to clear to the end of line */
@@ -1042,7 +1042,7 @@ static void reinitialize(void)
1042 open_file_and_read_lines(); 1042 open_file_and_read_lines();
1043#if ENABLE_FEATURE_LESS_ASK_TERMINAL 1043#if ENABLE_FEATURE_LESS_ASK_TERMINAL
1044 if (G.winsize_err) 1044 if (G.winsize_err)
1045 printf("\033[999;999H" "\033[6n"); 1045 printf(ESC"[999;999H" ESC"[6n");
1046#endif 1046#endif
1047 buffer_fill_and_print(); 1047 buffer_fill_and_print();
1048} 1048}