summaryrefslogtreecommitdiffstats
path: root/src/format.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/format.rs')
-rw-r--r--src/format.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/format.rs b/src/format.rs
index 5c1bf39f..8b137891 100644
--- a/src/format.rs
+++ b/src/format.rs
@@ -1,14 +1 @@
-use std::borrow::Cow;
-use crate::config::Config;
-use crate::features;
-
-/// If output is going to a tty, emit hyperlinks if requested.
-// Although raw output should basically be emitted unaltered, we do this.
-pub fn format_raw_line<'a>(line: &'a str, config: &Config) -> Cow<'a, str> {
- if config.hyperlinks && atty::is(atty::Stream::Stdout) {
- features::hyperlinks::format_commit_line_with_osc8_commit_hyperlink(line, config)
- } else {
- Cow::from(line)
- }
-}