freebsd-ports/net/tintin++/files/patch-ag
Kris Kennaway 0108f5bf0d Split patch files into one patch per file.
Fix build on current by #including the relevant headers instead of
trying to guess declarations.
2002-08-23 19:35:21 +00:00

15 lines
403 B
Text
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--- parse.c.orig Sun Aug 28 22:12:10 1994
+++ parse.c Tue Sep 26 17:20:07 2000
@@ -670,10 +670,10 @@
if(ses && !PSEUDO_PROMPT)
write_line_mud("", ses);
else if (!is_split)
- write(1,"> ", 3);
+ write(1,"> ", 2);
else {
sprintf(strng,"8> 7[%d;%df", input_row, input_col);
- write(1,strng, strlen(strng)+1);
+ write(1,strng, strlen(strng));
display_col+=2;
}
}