diff options
author | phk <phk@FreeBSD.org> | 2003-10-30 10:40:49 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-10-30 10:40:49 +0000 |
commit | eae6949d99a11d72cef4ef9015743ae44c91c6d1 (patch) | |
tree | b475e5fcaa9bc6f1821bb3284b36570c3410a4fd /include | |
parent | bbdba26328b9b5d6bc1b53351610790f6dc448c6 (diff) | |
download | FreeBSD-src-eae6949d99a11d72cef4ef9015743ae44c91c6d1.zip FreeBSD-src-eae6949d99a11d72cef4ef9015743ae44c91c6d1.tar.gz |
Add a new flag to vis(3): VIS_GLOB which encodes the glob(3) magic
characters '*', '?' and '['.
Diffstat (limited to 'include')
-rw-r--r-- | include/vis.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vis.h b/include/vis.h index d4134db..28f9765 100644 --- a/include/vis.h +++ b/include/vis.h @@ -65,6 +65,7 @@ typedef __size_t size_t; */ #define VIS_NOSLASH 0x40 /* inhibit printing '\' */ #define VIS_HTTPSTYLE 0x80 /* http-style escape % HEX HEX */ +#define VIS_GLOB 0x100 /* encode glob(3) magics */ /* * unvis return codes |