1
1

* lib/edit.spell.rc: New file. Invoke ispell on Ctrl-p in the editor.

* lib/Makefile.am: Add lib/edit.spell.rc.
Этот коммит содержится в:
Pavel Roskin 2001-07-31 22:13:55 +00:00
родитель 543d606b49
Коммит 36b103997c
3 изменённых файлов: 19 добавлений и 1 удалений

Просмотреть файл

@ -1,5 +1,9 @@
2001-07-31 Pavel Roskin <proski@gnu.org>
* lib/edit.spell.rc: New file. Invoke ispell on Ctrl-p in the
editor.
* lib/Makefile.am: Add lib/edit.spell.rc.
* autogen.sh: Use gettextize.
* ABOUT-NLS: Remove from CVS, it's installed by autogen.sh.
* po/Makefile.in.in: Likewise.

Просмотреть файл

@ -13,7 +13,7 @@ endif
LOCALIZED_HELP = mc.hlp.hu
LIBFILES_OUT = mc.ext
LIBFILES_CONST = mc.hint mc.hint.es mc.hint.cs mc.hint.it mc.hint.pl \
mc.hint.ru mc.lib mc.menu cedit.menu edit.indent.rc
mc.hint.ru mc.lib mc.menu cedit.menu edit.indent.rc edit.spell.rc
noinst_DATA = \
xnc.hlp \

14
lib/edit.spell.rc Обычный файл
Просмотреть файл

@ -0,0 +1,14 @@
#!/bin/sh
# *** External Spell Checker for Cooledit.
# arguments:
# $1 - edit file name
# $2 - highlight block file name
# $3 - error file name
# The editor doesn't save stty. Save it manually.
stty_save=`stty -g`
reset
clear
ispell $2 2>$3
clear
stty $stty_save