summaryrefslogtreecommitdiff
path: root/textproc/ispell-base/patches/patch-ak
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2004-12-01 12:18:21 +0000
committermarkd <markd@pkgsrc.org>2004-12-01 12:18:21 +0000
commit00c4c219add6c7f5b12ba3a977d33c3fb09e4ad8 (patch)
treeec3f9a07315ee6b17df326d5ab7348b8240add9b /textproc/ispell-base/patches/patch-ak
parentadc3c9b754dafec0e4eed61e6ba01c753577f007 (diff)
downloadpkgsrc-00c4c219add6c7f5b12ba3a977d33c3fb09e4ad8.tar.gz
Update ispell-base to 3.2.06 (only took 3 years :-)
Ispell 3.2 is primarily a bug-fix release, but a number of new features are important to users: - There is a new interactive mode. If ispell is invoked without arguments, it will prompt for words and suggest corrections. - The emacs interface (ispell.el and ispell.texinfo) is no longer distributed with ispell. Use the code that comes with emacs, or pick it up from: ftp://kdstevens.com/pub/stevens/ispell.el.gz or the matching ispell.el home page: http://www.kdstevens.com/~stevens/ispell-page.html - There is now an HTML mode. It is automatically selected for files ending in ".html", ".htm", or ".shtml". It can also be chosen manually with the -H switch. - There is a new general-purpose deformatter switch, -F. This switch, which was suggested by Ron Guilmette, allows an external program to perform deformatting for ispell. The -F switch opens the door to completely generalized spell checking with ispell. Want to spell-check your C/C++ comments? A simple deformatter filter will do the job. See the ispell manual page for details. - The annoying "TeX backslash bug" is now fixed correctly. - TeX/LaTeX deformatting is now somewhat configurable. Check out the -k switch and TEXSKIP1 in the manual page. Also include the irix patches from PR pkg/26925 from Georg Schwarz.
Diffstat (limited to 'textproc/ispell-base/patches/patch-ak')
-rw-r--r--textproc/ispell-base/patches/patch-ak4
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/ispell-base/patches/patch-ak b/textproc/ispell-base/patches/patch-ak
index 1a58edef2af..731c1248a6a 100644
--- a/textproc/ispell-base/patches/patch-ak
+++ b/textproc/ispell-base/patches/patch-ak
@@ -1,4 +1,4 @@
-$NetBSD: patch-ak,v 1.2 2004/03/19 06:20:21 uebayasi Exp $
+$NetBSD: patch-ak,v 1.3 2004/12/01 12:18:21 markd Exp $
--- term.c.orig Wed Nov 2 19:44:28 1994
+++ term.c
@@ -7,7 +7,7 @@ $NetBSD: patch-ak,v 1.2 2004/03/19 06:20:21 uebayasi Exp $
#include "proto.h"
#include "msgs.h"
-#ifdef USG
-+#if defined(__NetBSD__) || defined(linux)
++#if defined(__NetBSD__) || defined(linux) || defined(__sgi)
+#define USE_TERMIOS
+#include <termios.h>
+#elif defined(USG)