Displaying 1 result from an estimated 1 matches for "edca0b7".
Did you mean:
edca095
2009 Jan 31
1
"UI" keyword, pc_default and getline
...is skipped, so the code now tries to
parse the keywords parameter. The config line should be skipped in this case.
This could be fixed by converting "skipline" to a function and calling it from "pc_default".
- Sebastian
diff --git a/core/parsecmd.inc b/core/parsecmd.inc
index edca0b7..27e115f 100644
--- a/core/parsecmd.inc
+++ b/core/parsecmd.inc
@@ -97,12 +97,18 @@ getcommand:
.eof: stc
ret
-.skipline: cmp al,10 ; Search for LF
+.skipline: call skipline
je .find
- call getc
jc .eof...