1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Disable spell command for pico, it work only with "spell" which

not exists in FreeBSD and _not_ work with "ispell"
This commit is contained in:
Andrey A. Chernov 1998-01-29 20:15:49 +00:00
parent ebc1c4d62d
commit cb1b860a30
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=9516

57
mail/pine4/files/patch-aq Normal file
View File

@ -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')}