aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/string.spad.pamphlet
diff options
context:
space:
mode:
Diffstat (limited to 'src/algebra/string.spad.pamphlet')
-rw-r--r--src/algebra/string.spad.pamphlet10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/algebra/string.spad.pamphlet b/src/algebra/string.spad.pamphlet
index 311fb726..d053e00b 100644
--- a/src/algebra/string.spad.pamphlet
+++ b/src/algebra/string.spad.pamphlet
@@ -112,12 +112,12 @@ Character: OrderedFinite() with
quote == %ccst "_""
underscore == %ccst "__"
newline == %ccst "\n"
- carriageReturn == %ccst "\r"
+ carriageReturn == %i2c 13
linefeed == %i2c 10
- formfeed == %ccst "\f"
- backspace == %ccst "\b"
- horizontalTab == %ccst "\t"
- verticalTab == %ccst "\v"
+ formfeed == %i2c 12
+ backspace == %i2c 8
+ horizontalTab == %i2c 9
+ verticalTab == %i2c 11
coerce(c:%):OutputForm == c : OutputForm
digit? c == member?(c, digit())
hexDigit? c == member?(c, hexDigit())