mirror of
https://github.com/MidnightCommander/mc
synced 2025-04-01 12:42:57 +03:00
* lib/cedit.menu: Remove all references to the error file.
* lib/edit.indent.rc: Likewise. * lib/edit.spell.rc: Likewise.
This commit is contained in:
parent
f5a762b7a8
commit
d40f336c24
@ -1,3 +1,9 @@
|
||||
2002-08-24 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* lib/cedit.menu: Remove all references to the error file.
|
||||
* lib/edit.indent.rc: Likewise.
|
||||
* lib/edit.spell.rc: Likewise.
|
||||
|
||||
2002-08-23 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* configure.in: Make GLIB_LIBS a separate AC_SUBST'ed variable,
|
||||
|
@ -7,7 +7,6 @@ shell_patterns=0 # expression type
|
||||
# position. For edit menu only.
|
||||
# %y The syntax type of current file. For edit menu only.
|
||||
# %b The block file name.
|
||||
# %e The error file name.
|
||||
# %f The current file name.
|
||||
# %n Only the current file name without extension.
|
||||
# %x The extension of current file name.
|
||||
|
@ -1,12 +1,10 @@
|
||||
#! /bin/sh
|
||||
# *** External Formatter (Indenter) for key F19 cooledit.
|
||||
# args:
|
||||
# $1 - edit file name
|
||||
# $2 - highlight block file name
|
||||
# $3 - error file name
|
||||
# *** External Formatter (Indenter) for GNU Midnight Commander.
|
||||
# arguments:
|
||||
# $1 - Name of the file being edited
|
||||
# $2 - Name of the file to be processed
|
||||
|
||||
exec >/dev/null
|
||||
exec 2>"$3"
|
||||
|
||||
case `echo $1 |sed 's/^.*\.//'` in
|
||||
c|h)
|
||||
|
@ -1,12 +1,11 @@
|
||||
#! /bin/sh
|
||||
# *** External Spell Checker for Cooledit.
|
||||
# *** External Spell Checker for GNU Midnight Commander.
|
||||
# arguments:
|
||||
# $1 - edit file name
|
||||
# $2 - highlight block file name
|
||||
# $3 - error file name
|
||||
# $1 - Name of the file being edited
|
||||
# $2 - Name of the file to be processed
|
||||
|
||||
if aspell </dev/null >/dev/null 2>&1; then
|
||||
aspell -c "$2" 2>"$3"
|
||||
aspell -c "$2"
|
||||
else
|
||||
ispell "$2" 2>"$3"
|
||||
ispell "$2"
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user