diff options
Diffstat (limited to 'src/buffer.hh')
| -rw-r--r-- | src/buffer.hh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/buffer.hh b/src/buffer.hh index c8870509..a7ab127c 100644 --- a/src/buffer.hh +++ b/src/buffer.hh @@ -102,10 +102,11 @@ public: enum class Flags { None = 0, - File = 1, - New = 2, - Fifo = 4, - NoUndo = 8, + File = 1 << 0, + New = 1 << 1, + Fifo = 1 << 2, + NoUndo = 1 << 3, + Debug = 1 << 4 }; Buffer(String name, Flags flags, StringView data = {}, |
