mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
Forgot to add patch files :)
This commit is contained in:
parent
3136ece7f5
commit
a8a560495c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=33059
20
chinese/tin/files/patch-charset.c
Normal file
20
chinese/tin/files/patch-charset.c
Normal file
@ -0,0 +1,20 @@
|
||||
--- src/charset.c.orig Mon Jul 24 21:30:22 2000
|
||||
+++ src/charset.c Sat Sep 23 14:03:14 2000
|
||||
@@ -330,7 +330,7 @@
|
||||
unsigned char *c;
|
||||
|
||||
for (c= (unsigned char *)buf; *c; c++) {
|
||||
- if (!my_isprint(*c))
|
||||
+ if (!my_isprint(*c) && *c != 27)
|
||||
*c = '?';
|
||||
}
|
||||
}
|
||||
@@ -348,7 +348,7 @@
|
||||
unsigned char *c;
|
||||
|
||||
for (c = (unsigned char *)buf; *c; c++) {
|
||||
- if (!(my_isprint(*c) || *c == 8 || *c == 9 || *c == 10 || *c == 12 || *c == 13))
|
||||
+ if (!(my_isprint(*c) || *c == 8 || *c == 9 || *c == 10 || *c == 12 || *c == 13 || *c==27))
|
||||
*c = '?';
|
||||
}
|
||||
}
|
11
chinese/tin/files/patch-cook.c
Normal file
11
chinese/tin/files/patch-cook.c
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/cook.c.orig Sat Sep 23 14:34:20 2000
|
||||
+++ src/cook.c Sat Sep 23 14:34:41 2000
|
||||
@@ -109,7 +109,7 @@
|
||||
while (i++ < j)
|
||||
*q++ = ' ';
|
||||
|
||||
- } else if (((*p) & 0xFF) < ' ' && *p != '\n') { /* Literal ctrl chars */
|
||||
+ } else if (((*p) & 0xFF) < ' ' && *p != '\n' && *p != 27) { /* Literal ctrl chars */
|
||||
*q++ = '^';
|
||||
*q++ = ((*p) & 0xFF) + '@';
|
||||
if (*p == '\f') /* ^L detected */
|
36
chinese/tin/files/patch-init.c
Normal file
36
chinese/tin/files/patch-init.c
Normal file
@ -0,0 +1,36 @@
|
||||
--- src/init.c.orig Sat Sep 23 15:52:42 2000
|
||||
+++ src/init.c Sat Sep 23 15:55:26 2000
|
||||
@@ -270,8 +270,8 @@
|
||||
2, /* recent_time */
|
||||
32, /* groupname_max_length */
|
||||
KILL_READ, /* kill_level */
|
||||
- MIME_ENCODING_7BIT, /* mail_mime_encoding */
|
||||
- MIME_ENCODING_7BIT, /* post_mime_encoding */
|
||||
+ MIME_ENCODING_8BIT, /* mail_mime_encoding */
|
||||
+ MIME_ENCODING_8BIT, /* post_mime_encoding */
|
||||
POST_PROC_NONE, /* post_process */
|
||||
REREAD_ACTIVE_FILE_SECS, /* reread_active_file_secs */
|
||||
SHOW_FROM_NAME, /* show_author */
|
||||
@@ -302,7 +302,7 @@
|
||||
0, /* col_title (initialised later) */
|
||||
2, /* word_h_display_marks */
|
||||
TRUE, /* word_highlight */
|
||||
- FALSE, /* use_color */
|
||||
+ TRUE, /* use_color */
|
||||
#endif /* HAVE_COLOR */
|
||||
TRUE, /* add_posted_to_filter */
|
||||
TRUE, /* advertising */
|
||||
@@ -335,11 +335,11 @@
|
||||
TRUE, /* keep_dead_articles */
|
||||
TRUE, /* keep_posted_articles */
|
||||
POSTED_FILE, /* keep_posted_articles_file */
|
||||
- FALSE, /* mail_8bit_header */
|
||||
+ TRUE, /* mail_8bit_header */
|
||||
TRUE, /* mark_saved_read */
|
||||
TRUE, /* pgdn_goto_next */
|
||||
TRUE, /* pos_first_unread */
|
||||
- FALSE, /* post_8bit_header */
|
||||
+ TRUE, /* post_8bit_header */
|
||||
TRUE, /* post_process_view */
|
||||
#ifndef DISABLE_PRINTING
|
||||
FALSE, /* print_header */
|
Loading…
Reference in New Issue
Block a user