summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1998-01-29 20:15:49 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1998-01-29 20:15:49 +0000
commitcb1b860a30f11a97bcbb59a2e074346c1630e204 (patch)
tree02d321b181397b6051d78cb9cebb398be3fbf421 /mail
parentUpgrade to version 1.04 and make myself MAINTAINER. (diff)
Disable spell command for pico, it work only with "spell" which
not exists in FreeBSD and _not_ work with "ispell"
Notes
Notes: svn path=/head/; revision=9516
Diffstat (limited to 'mail')
-rw-r--r--mail/pine4/files/patch-aq57
1 files changed, 57 insertions, 0 deletions
diff --git a/mail/pine4/files/patch-aq b/mail/pine4/files/patch-aq
new file mode 100644
index 000000000000..d90d3d3f065c
--- /dev/null
+++ b/mail/pine4/files/patch-aq
@@ -0,0 +1,57 @@
+*** pico/display.c.bak Wed Jul 10 20:59:09 1996
+--- pico/display.c Thu Jan 29 23:06:07 1998
+***************
+*** 82,88 ****
+ {"^X", "Exit", KS_EXIT}, {"^J", "Justify", KS_JUSTIFY},
+ {"^W", "Where is", KS_WHEREIS}, {"^V", "Next Pg", KS_NEXTPAGE},
+ {"^U", NULL, KS_NONE},
+! #ifdef SPELLER
+ {"^T", "To Spell", KS_SPELLCHK}
+ #else
+ {"^D", "Del Char", KS_NONE}
+--- 82,88 ----
+ {"^X", "Exit", KS_EXIT}, {"^J", "Justify", KS_JUSTIFY},
+ {"^W", "Where is", KS_WHEREIS}, {"^V", "Next Pg", KS_NEXTPAGE},
+ {"^U", NULL, KS_NONE},
+! #if defined(SPELLER) && !defined(__FreeBSD__)
+ {"^T", "To Spell", KS_SPELLCHK}
+ #else
+ {"^D", "Del Char", KS_NONE}
+*** pico/ebind.h.bak Fri Mar 15 10:41:58 1996
+--- pico/ebind.h Thu Jan 29 23:04:30 1998
+***************
+*** 145,151 ****
+ {CTRL|'O', filewrite},
+ {CTRL|'P', backline},
+ {CTRL|'R', insfile},
+! #ifdef SPELLER
+ {CTRL|'T', spell},
+ #endif /* SPELLER */
+ {CTRL|'U', yank},
+--- 145,151 ----
+ {CTRL|'O', filewrite},
+ {CTRL|'P', backline},
+ {CTRL|'R', insfile},
+! #if defined(SPELLER) && !defined(__FreeBSD__)
+ {CTRL|'T', spell},
+ #endif /* SPELLER */
+ {CTRL|'U', yank},
+*** pico/main.c.bak Wed May 29 04:05:27 1996
+--- pico/main.c Thu Jan 29 23:04:30 1998
+***************
+*** 72,78 ****
+ { F9, (CTRL|'K')},
+ { F10, (CTRL|'U')},
+ { F11, (CTRL|'C')},
+! #ifdef SPELLER
+ { F12, (CTRL|'T')}
+ #else
+ { F12, (CTRL|'D')}
+--- 72,78 ----
+ { F9, (CTRL|'K')},
+ { F10, (CTRL|'U')},
+ { F11, (CTRL|'C')},
+! #if defined(SPELLER) && !defined(__FreeBSD__)
+ { F12, (CTRL|'T')}
+ #else
+ { F12, (CTRL|'D')}