aboutsummaryrefslogtreecommitdiff
path: root/src/hooks/sed
diff options
context:
space:
mode:
Diffstat (limited to 'src/hooks/sed')
-rw-r--r--src/hooks/sed/parser.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hooks/sed/parser.rs b/src/hooks/sed/parser.rs
index 815803c..61e719d 100644
--- a/src/hooks/sed/parser.rs
+++ b/src/hooks/sed/parser.rs
@@ -121,6 +121,7 @@ bitflags! {
/// s allow . to match \n
/// U swap the meaning of x* and x*?
/// x ignore whitespace and allow line comments (starting with `#`)
+ #[derive(Debug, Clone, PartialEq, PartialOrd)]
struct Flags: u32 {
const GLOBAL = 0b00000001;
const CASE_INSENSITIVE = 0b00000010;