mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
b8a55a6b2b
suffix" convention. sc will also prepend a hash character which will make the backup files go out of common directory sort order. - A value such as 40 will be displayed wrongly if displayed with a "0.00 EUR" format (i.e. more than one or two characters alpha text after the number format). - 8-bit characters (according to usual locale conventions) should be allowed. PR: 32017 Submitted by: Helge Oldach <send-pr@oldach.net>
26 lines
374 B
Plaintext
26 lines
374 B
Plaintext
--- lex.c.orig Mon May 11 13:43:36 1992
|
|
+++ lex.c Sun Dec 2 15:23:46 2001
|
|
@@ -384,11 +384,11 @@
|
|
ctl('z'), 0
|
|
};
|
|
|
|
-void
|
|
+int
|
|
charout(c)
|
|
int c;
|
|
{
|
|
- (void)putchar(c);
|
|
+ return putchar(c);
|
|
}
|
|
|
|
void
|
|
@@ -493,7 +493,7 @@
|
|
if (dumpindex && *dumpindex)
|
|
return (*dumpindex++);
|
|
|
|
- c = toascii(getchar());
|
|
+ c = getchar();
|
|
biggest = 0;
|
|
almost = 0;
|
|
|