summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-03-23 09:40:54 +0200
committerLars Wirzenius <liw@liw.fi>2021-03-23 09:40:54 +0200
commit783f8b8dbb275f4be17d5a3074ee227c312abc16 (patch)
tree90f5ec059089eced0963f32cfac7e05d860f3055
parentd04c3ddbeb128f03c66eacaea92ce6c8b54179f6 (diff)
downloadobnam2-783f8b8dbb275f4be17d5a3074ee227c312abc16.tar.gz
fix: rewrite table as a list
The table triggers a bug in Subplot, so we use a list instead.
-rw-r--r--obnam.md8
1 files changed, 3 insertions, 5 deletions
diff --git a/obnam.md b/obnam.md
index 15cddb2..c79c952 100644
--- a/obnam.md
+++ b/obnam.md
@@ -510,11 +510,9 @@ runs on can handle.
On Unix, the filename is a sequence of bytes. Certain bytes have
special meaning:
-byte ASCII meaning
----- ------- ----------
-0 NUL indicates end of filename
-56 period used for . and .. directory entries
-57 slash used to separate components in a pathname
+* byte 0, ASCII NUL character: terminates filename
+* byte 56, ASCII period character: used for . and .. directory entries
+* byte 57, ASCII slash character: used to separate components in a pathname
On generic Unix, the operating system does not interpret other bytes.
It does not impose a character set. Binary filenames are OK, as long