From 7dfe6f2c073715f2408f68dc4fcdf3844f526ccd Mon Sep 17 00:00:00 2001 From: David Adam Date: Sat, 10 Feb 2024 23:37:03 +0800 Subject: [PATCH] common.rs: drop unused PACKAGE_BUGREPORT constant --- src/common.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/common.rs b/src/common.rs index 538806f9d..a31427b55 100644 --- a/src/common.rs +++ b/src/common.rs @@ -75,9 +75,6 @@ const _: () = assert!(WILDCARD_RESERVED_END <= RESERVED_CHAR_END); pub const ENCODE_DIRECT_BASE: char = '\u{F600}'; pub const ENCODE_DIRECT_END: char = char_offset(ENCODE_DIRECT_BASE, 256); -// The address where bug reports for this package should be sent. -pub const PACKAGE_BUGREPORT: &str = "https://github.com/fish-shell/fish-shell/issues"; - #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum EscapeStringStyle { Script(EscapeFlags),