aboutsummaryrefslogtreecommitdiff
path: root/src/hooks/sed/parser.rs
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2025-05-06 16:17:35 +0200
committerMax Audron <audron@cocaine.farm>2025-05-06 16:19:30 +0200
commitb6350162b4c70abb896613e4ebea65ca1661450d (patch)
tree2e55e0477b4d2f7a646a97f92ee1362db769f75e /src/hooks/sed/parser.rs
parentadd nix build and module (diff)
update dependencies
Diffstat (limited to 'src/hooks/sed/parser.rs')
-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;