summaryrefslogtreecommitdiff
path: root/term/term.h
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-12-01 19:08:40 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-12-01 19:08:40 +0000
commitc1584f90674b65c3c4c90ecc40afc5513300d889 (patch)
tree6f3a3d1c35634ba0e9261f4026cb202ddfffc0f2 /term/term.h
parent4633ef15a852c2457d103303c15d6bd78737af9e (diff)
(CHAR_DC3): Correct value is '\023'.
(CHAR_DC1, CHAR_DC2): New macros.
Diffstat (limited to 'term/term.h')
-rw-r--r--term/term.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/term/term.h b/term/term.h
index b0fed424..97bf3246 100644
--- a/term/term.h
+++ b/term/term.h
@@ -32,7 +32,9 @@
#define CHAR_SOH '\001' /* C-a */
#define CHAR_EOT '\004' /* C-d */
-#define CHAR_DC3 '\022' /* C-r */
+#define CHAR_DC1 '\021' /* C-q */
+#define CHAR_DC2 '\022' /* C-r */
+#define CHAR_DC3 '\023' /* C-s */
#define CHAR_USER_QUOTE '\377' /* break quoting, etc. */
/* XXX These belong in <termios.h> */