diff options
| author | omni <omni+vagant@hack.org> | 2024-11-18 20:35:38 +0000 |
|---|---|---|
| committer | omni <omni+vagant@hack.org> | 2024-11-18 20:37:32 +0000 |
| commit | 6f8fe7929aa3c7131180442dc7d90ea1be831204 (patch) | |
| tree | 7840713ac04c656de163bdda64efd668c46d20b8 | |
| parent | c602e9aeaab636302d52b17da64e84044462a230 (diff) | |
| download | rust-6f8fe7929aa3c7131180442dc7d90ea1be831204.tar.gz rust-6f8fe7929aa3c7131180442dc7d90ea1be831204.zip | |
Make rustc --explain busybox less compatible
busybox less does not support the -r flag and less(1) says: USE OF THE -r OPTION IS NOT RECOMMENDED.
| -rw-r--r-- | compiler/rustc_driver_impl/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_driver_impl/src/lib.rs b/compiler/rustc_driver_impl/src/lib.rs index b6f7abed6f3..8dd043be6ad 100644 --- a/compiler/rustc_driver_impl/src/lib.rs +++ b/compiler/rustc_driver_impl/src/lib.rs @@ -577,7 +577,7 @@ fn show_md_content_with_pager(content: &str, color: ColorConfig) { let mut cmd = Command::new(&pager_name); // FIXME: find if other pagers accept color options let mut print_formatted = if pager_name == "less" { - cmd.arg("-r"); + cmd.arg("-R"); true } else { ["bat", "catbat", "delta"].iter().any(|v| *v == pager_name) |
