From 0ad8957a8e721d448f1b580148947bc887696d75 Mon Sep 17 00:00:00 2001 From: Satoshi Asami Date: Tue, 30 Apr 1996 05:59:29 +0000 Subject: Japanized pine for reading and writing Japanese mails (obviously!). Submitted by: max@sfc.wide.ad.jp --- japanese/pine/files/patch-aa | 45 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 japanese/pine/files/patch-aa (limited to 'japanese/pine/files/patch-aa') diff --git a/japanese/pine/files/patch-aa b/japanese/pine/files/patch-aa new file mode 100644 index 000000000000..200d7393c348 --- /dev/null +++ b/japanese/pine/files/patch-aa @@ -0,0 +1,45 @@ +*** imap/ANSI/c-client/mtest.c.bak Mon Sep 5 05:41:28 1994 +--- imap/ANSI/c-client/mtest.c Mon Nov 20 03:00:21 1995 +*************** +*** 454,461 **** + + void prompt (char *msg,char *txt) + { + printf ("%s",msg); +! gets (txt); + } + + /* Interfaces to C-client */ +--- 454,465 ---- + + void prompt (char *msg,char *txt) + { ++ char *s; + printf ("%s",msg); +! *txt = '\0'; +! fgets (txt, MAILTMPLEN, stdin); +! if (s = strchr(txt, '\n')) +! *s = '\0'; + } + + /* Interfaces to C-client */ +*************** +*** 600,606 **** + puts (" Msg (end with a line with only a '.'):"); + body->type = TYPETEXT; + *text = '\0'; +! while (gets (line)) { + if (line[0] == '.') { + if (line[1] == '\0') break; + else strcat ((char *) text,"."); +--- 604,613 ---- + puts (" Msg (end with a line with only a '.'):"); + body->type = TYPETEXT; + *text = '\0'; +! while (fgets (line, sizeof(line), stdin)) { +! char *s = strchr(line, '\n'); +! if (s) +! *s = '\0'; + if (line[0] == '.') { + if (line[1] == '\0') break; + else strcat ((char *) text,"."); -- cgit v1.2.3