summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-06-08 16:50:23 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-06-08 16:50:23 -0700
commitcb40e8a01046a0a29b35846a6d553804c5162c00 (patch)
treea4c9d1ed10aef26bf90a21644e92aa56ce93bfcb
parent9544bec3f5267df88331408d8c0bd3c32cb59045 (diff)
downloadnasm-cb40e8a01046a0a29b35846a6d553804c5162c00.tar.gz
doc: \t is also a supported escape sequence...
-rw-r--r--doc/nasmdoc.src3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/nasmdoc.src b/doc/nasmdoc.src
index 6615280e..3b936fd9 100644
--- a/doc/nasmdoc.src
+++ b/doc/nasmdoc.src
@@ -1407,7 +1407,7 @@ contents of those are represented verbatim. Strings enclosed in
backquotes support C-style \c{\\}-escapes for special characters.
-The following escape sequences are recognized by backquoted strings:
+The following \i{escape sequences} are recognized by backquoted strings:
\c \' single quote (')
\c \" double quote (")
@@ -1416,6 +1416,7 @@ The following escape sequences are recognized by backquoted strings:
\c \? question mark (?)
\c \a BEL (ASCII 7)
\c \b BS (ASCII 8)
+\c \t TAB (ASCII 9)
\c \n LF (ASCII 10)
\c \v VT (ASCII 11)
\c \f FF (ASCII 12)