summaryrefslogtreecommitdiff
path: root/web/matlabweb/Bugs
diff options
context:
space:
mode:
Diffstat (limited to 'web/matlabweb/Bugs')
-rw-r--r--web/matlabweb/Bugs17
1 files changed, 17 insertions, 0 deletions
diff --git a/web/matlabweb/Bugs b/web/matlabweb/Bugs
new file mode 100644
index 0000000000..59159437f5
--- /dev/null
+++ b/web/matlabweb/Bugs
@@ -0,0 +1,17 @@
+BUG Dec 10 1997, version 2.02: Linecons in a formatted string in a
+ macro definition are not discarded by out_char(). This is because
+ macro replacement texts are not tokenized; they are input and
+ output literally. The result is 3 times out_char('.'), instead of
+ out_char(SP_linecon)
+
+ ---No, that's not true. get_next() is used there. But there seems
+ to be a problem with a string in " quotes that doesn't end.
+
+ ---It doesn't end if there is a percent sign in it; it starts a
+ comment which is a string to mtangle!
+
+FIX in version 2.03: seems to be solved by doing @<get a string or
+ transpose operator@> instead of return(c) in get_next() for
+ '"'. The string is delimited by '"', so the case of '"' is used in
+ get_output. Also, <get a string or...> must return '"' for a
+ transpose operator.