Skip to Content.
Sympa Menu

texmacs-users - Re: ispell with ngerman

Subject: mailing-list for TeXmacs Users

List archive

Re: ispell with ngerman


Chronological Thread 
  • From: Philipp Hartmann <address@hidden>
  • To: address@hidden
  • Subject: Re: ispell with ngerman
  • Date: Wed, 6 Nov 2002 19:28:20 +0100 (CET)

Hiho,

On Wed, 6 Nov 2002, Jan Ulrich Hasecke wrote:
>
> the spellchecker does not spell words with umlauts as ä,ö,ü
> correctly. I see now switch to specify this.

I had the same problems. This is due to a lacking parameter '-latin1' in
the call of the ispell checker.

Therefore I wrote a simple script as a quick'n'dirty workaround:

#!/bin/bash
TEXMACSBINARY=/usr/bin/texmacs
ISPELLBINARY=/usr/bin/ispell

#Workaround for some languages
#'adds' the switch '-latin1' to the ispell process invoked by TeXmacs
alias ispell=$ISPELLBINARY -latin1

if test -x $TEXMACSBINARY; then
echo Launching $TEXMACSBINARY $*...
$TEXMACSBINARY $*
else
echo $TEXMACSBINARY not found or not executable.
fi
exit $?

This works fine for me and my TeXmacs 1.0.0.16.
But of course I would appreciate a fix for this problem in a further
TeXmacs release. :)

hth,
regards,
Philipp





Archive powered by MHonArc 2.6.19.

Top of Page