annotate lisp/packages/ispell.el @ 207:e45d5e7c476e r20-4b2

Import from CVS: tag r20-4b2
author cvs
date Mon, 13 Aug 2007 10:03:52 +0200
parents 28f395d8dc7a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1 ;;; ispell.el --- spell checking using Ispell
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3 ;; Copyright (C) 1994, 1995 Free Software Foundation, Inc.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
5 ;; Authors : Ken Stevens <k.stevens@ieee.org>
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
6 ;; Last Modified On: Tue Jun 13 12:05:28 EDT 1995
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
7 ;; Update Revision : 2.37
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
8 ;; Syntax : emacs-lisp
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
9 ;; Status : Release with 3.1.12+ ispell.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
10 ;; Version : International Ispell Version 3.1 by Geoff Kuenning.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
11 ;; Bug Reports : ispell-el-bugs@itcorp.com
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
12
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
13 ;; Note: version numbers and time stamp are not updated
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
14 ;; when this file is edited for release with GNU emacs.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
15
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
16 ;; This file is part of XEmacs.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
17
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
18 ;; XEmacs is free software; you can redistribute it and/or modify it
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
19 ;; under the terms of the GNU General Public License as published by
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
20 ;; the Free Software Foundation; either version 2, or (at your option)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
21 ;; any later version.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
22
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
23 ;; XEmacs is distributed in the hope that it will be useful, but
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
24 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
26 ;; General Public License for more details.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
27
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
28 ;; You should have received a copy of the GNU General Public License
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
29 ;; along with XEmacs; see the file COPYING. If not, write to the Free
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
30 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
31 ;; 02111-1307, USA.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
32
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;;; Commentary:
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
34
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
35 ;; INSTRUCTIONS
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
36 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
37 ;; This code contains a section of user-settable variables that you should
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
38 ;; inspect prior to installation. Look past the end of the history list.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
39 ;; Set them up for your locale and the preferences of the majority of the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
40 ;; users. Otherwise the users may need to set a number of variables
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
41 ;; themselves.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
42 ;; You particularly may want to change the default dictionary for your
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
43 ;; country and language.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
44 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
45 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
46 ;; To fully install this, add this file to your Emacs Lisp directory and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
47 ;; compile it with M-X byte-compile-file. Then add the following to the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
48 ;; appropriate init file:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
49 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
50 ;; (autoload 'ispell-word "ispell"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
51 ;; "Check the spelling of word in buffer." t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
52 ;; (global-set-key "\e$" 'ispell-word)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
53 ;; (autoload 'ispell-region "ispell"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
54 ;; "Check the spelling of region." t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
55 ;; (autoload 'ispell-buffer "ispell"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
56 ;; "Check the spelling of buffer." t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
57 ;; (autoload 'ispell-complete-word "ispell"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
58 ;; "Look up current word in dictionary and try to complete it." t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
59 ;; (autoload 'ispell-change-dictionary "ispell"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
60 ;; "Change ispell dictionary." t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
61 ;; (autoload 'ispell-message "ispell"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
62 ;; "Check spelling of mail message or news post.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
63 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
64 ;; Depending on the mail system you use, you may want to include these:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
65 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
66 ;; (add-hook 'news-inews-hook 'ispell-message)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
67 ;; (add-hook 'mail-send-hook 'ispell-message)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
68 ;; (add-hook 'mh-before-send-letter-hook 'ispell-message)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
69 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
70 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
71 ;; Ispell has a TeX parser and a nroff parser (the default).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
72 ;; The parsing is controlled by the variable ispell-parser. Currently
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
73 ;; it is just a "toggle" between TeX and nroff, but if more parsers are
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
74 ;; added it will be updated. See the variable description for more info.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
75 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
76 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
77 ;; TABLE OF CONTENTS
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
78 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
79 ;; ispell-word
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
80 ;; ispell-region
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
81 ;; ispell-buffer
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
82 ;; ispell-message
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
83 ;; ispell-continue
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
84 ;; ispell-complete-word
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
85 ;; ispell-complete-word-interior-frag
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
86 ;; ispell-change-dictionary
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
87 ;; ispell-kill-ispell
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
88 ;; ispell-pdict-save
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
89 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
90 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
91 ;; Commands in ispell-region:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
92 ;; Character replacement: Replace word with choice. May query-replace.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
93 ;; ' ': Accept word this time.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
94 ;; 'i': Accept word and insert into private dictionary.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
95 ;; 'a': Accept word for this session.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
96 ;; 'A': Accept word and place in buffer-local dictionary.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
97 ;; 'r': Replace word with typed-in value. Rechecked.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
98 ;; 'R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
99 ;; '?': Show these commands
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
100 ;; 'x': Exit spelling buffer. Move cursor to original point.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
101 ;; 'X': Exit spelling buffer. Leave cursor at the current point.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
102 ;; 'q': Quit spelling session (Kills ispell process).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
103 ;; 'l': Look up typed-in replacement in alternate dictionary. Wildcards okay.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
104 ;; 'u': Like 'i', but the word is lower-cased first.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
105 ;; 'm': Like 'i', but allows one to include dictionary completion info.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
106 ;; 'C-l': redraws screen
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
107 ;; 'C-r': recursive edit
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
108 ;; 'C-z': suspend emacs or iconify frame
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
109 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
110 ;; Buffer-Local features:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
111 ;; There are a number of buffer-local features that can be used to customize
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
112 ;; ispell for the current buffer. This includes language dictionaries,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
113 ;; personal dictionaries, parsing, and local word spellings. Each of these
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
114 ;; local customizations are done either through local variables, or by
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
115 ;; including the keyword and argument(s) at the end of the buffer (usually
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
116 ;; prefixed by the comment characters). See the end of this file for
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
117 ;; examples. The local keywords and variables are:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
118 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
119 ;; ispell-dictionary-keyword language-dictionary
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
120 ;; uses local variable ispell-local-dictionary
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
121 ;; ispell-pdict-keyword personal-dictionary
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
122 ;; uses local variable ispell-local-pdict
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
123 ;; ispell-parsing-keyword mode-arg extended-char-arg
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
124 ;; ispell-words-keyword any number of local word spellings
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
125 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
126 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
127 ;; BUGS:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
128 ;; Highlighting in version 19 still doesn't work on tty's.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
129 ;; On some versions of emacs, growing the minibuffer fails.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
130 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
131 ;; HISTORY
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
132 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
133 ;; Revision 2.38 1996/5/30 ethanb@phys.washington.edu
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
134 ;; Update ispell-message for gnus 5 (news-inews-hook => message-send-hook;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
135 ;; different header for quoted message).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
136 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
137 ;; Revision 2.37 1995/6/13 12:05:28 stevens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
138 ;; Removed autoload from ispell-dictionary-alist. *choices* mode-line shows
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
139 ;; misspelled word. Block skip for pgp & forwarded messages added.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
140 ;; RMS: the autoload changes had problems and I removed them.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
141 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
142 ;; Revision 2.36 1995/2/6 17:39:38 stevens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
143 ;; Properly adjust screen with different ispell-choices-win-default-height
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
144 ;; settings. Skips SGML entity references.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
145 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
146 ;; Revision 2.35 1995/1/13 14:16:46 stevens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
147 ;; Skips SGML tags, ispell-change-dictionary fix for add-hook, assure personal
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
148 ;; dictionary is saved when called from the menu
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
149 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
150 ;; Revision 2.34 1994/12/08 13:17:41 stevens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
151 ;; Interaction corrected to function with all 3.1 ispell versions.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
152 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
153 ;; Revision 2.33 1994/11/24 02:31:20 stevens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
154 ;; Repaired bug introduced in 2.32 that corrupts buffers when correcting.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
155 ;; Improved buffer scrolling. Nondestructive buffer selections allowed.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
156 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
157 ;; Revision 2.32 1994/10/31 21:10:08 geoff
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
158 ;; Many revisions accepted from RMS/FSF. I think (though I don't know) that
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
159 ;; this represents an 'official' version.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
160 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
161 ;; Revision 2.31 1994/5/31 10:18:17 stevens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
162 ;; Repaired comments. buffer-local commands executed in `ispell-word' now.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
163 ;; German dictionary described for extended character mode. Dict messages.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
164 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
165 ;; Revision 2.30 1994/5/20 22:18:36 stevens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
166 ;; Continue ispell from ispell-word, C-z functionality fixed.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
167 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
168 ;; Revision 2.29 1994/5/12 09:44:33 stevens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
169 ;; Restored ispell-use-ptys-p, ispell-message aborts sends with interrupt.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
170 ;; defined fn ispell
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
171 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
172 ;; Revision 2.28 1994/4/28 16:24:40 stevens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
173 ;; Window checking when ispell-message put on gnus-inews-article-hook jwz.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
174 ;; prefixed ispell- to highlight functions and horiz-scroll fn.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
175 ;; Try and respect case of word in ispell-complete-word.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
176 ;; Ignore non-char events. Ispell-use-ptys-p commented out. Lucid menu.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
177 ;; Better interrupt handling. ispell-message improvements from Ethan.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
178 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
179 ;; Revision 2.27
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
180 ;; version 18 explicit C-g handling disabled as it didn't work. Added
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
181 ;; ispell-extra-args for ispell customization (jwz)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
182 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
183 ;; Revision 2.26 1994/2/15 16:11:14 stevens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
184 ;; name changes for copyright assignment. Added word-frags in complete-word.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
185 ;; Horizontal scroll (John Conover). Query-replace matches words now. bugs.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
186 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
187 ;; Revision 2.25
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
188 ;; minor mods, upgraded ispell-message
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
189 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
190 ;; Revision 2.24
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
191 ;; query-replace more robust, messages, defaults, ispell-change-dict.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
192 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
193 ;; Revision 2.23 1993/11/22 23:47:03 stevens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
194 ;; ispell-message, Fixed highlighting, added menu-bar, fixed ispell-help, ...
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
195 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
196 ;; Revision 2.22
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
197 ;; Added 'u' command. Fixed default in ispell-local-dictionary.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
198 ;; fixed affix rules display. Tib skipping more robust. Contributions by
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
199 ;; Per Abraham (parser selection), Denis Howe, and Eberhard Mattes.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
200 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
201 ;; Revision 2.21 1993/06/30 14:09:04 stevens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
202 ;; minor bugs. (nroff word skipping fixed)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
203 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
204 ;; Revision 2.20 1993/06/30 14:09:04 stevens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
205 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
206 ;; Debugging and contributions by: Boris Aronov, Rik Faith, Chris Moore,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
207 ;; Kevin Rodgers, Malcolm Davis.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
208 ;; Particular thanks to Michael Lipp, Jamie Zawinski, Phil Queinnec
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
209 ;; and John Heidemann for suggestions and code.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
210 ;; Major update including many tweaks.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
211 ;; Many changes were integrations of suggestions.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
212 ;; lookup-words rehacked to use call-process (Jamie).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
213 ;; ispell-complete-word rehacked to be compatible with the rest of the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
214 ;; system for word searching and to include multiple wildcards,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
215 ;; and it's own dictionary.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
216 ;; query-replace capability added. New options 'X', 'R', and 'A'.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
217 ;; buffer-local modes for dictionary, word-spelling, and formatter-parsing.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
218 ;; Many random bugs, like commented comments being skipped, fix to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
219 ;; keep-choices-win, fix for math mode, added pipe mode choice,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
220 ;; fixed 'q' command, ispell-word checks previous word and leave cursor
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
221 ;; in same location. Fixed tib code which could drop spelling regions.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
222 ;; Cleaned up setq calls for efficiency. Gave more context on window overlays.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
223 ;; Assure context on ispell-command-loop. Window lossage in look cmd fixed.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
224 ;; Due to pervasive opinion, common-lisp package syntax removed. Display
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
225 ;; problem when not highlighting.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
226 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
227 ;; Revision 2.19 1992/01/10 10:54:08 geoff
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
228 ;; Make another attempt at fixing the "Bogus, dude" problem. This one is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
229 ;; less elegant, but has the advantage of working.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
230 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
231 ;; Revision 2.18 1992/01/07 10:04:52 geoff
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
232 ;; Fix the "Bogus, Dude" problem in ispell-word.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
233 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
234 ;; Revision 2.17 1991/09/12 00:01:42 geoff
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
235 ;; Add some changes to make ispell-complete-word work better, though
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
236 ;; still not perfectly.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
237 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
238 ;; Revision 2.16 91/09/04 18:00:52 geoff
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
239 ;; More updates from Sebastian, to make the multiple-dictionary support
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
240 ;; more flexible.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
241 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
242 ;; Revision 2.15 91/09/04 17:30:02 geoff
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
243 ;; Sebastian Kremer's tib support
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
244 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
245 ;; Revision 2.14 91/09/04 16:19:37 geoff
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
246 ;; Don't do set-window-start if the move-to-window-line moved us
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
247 ;; downward, rather than upward. This prevents getting the buffer all
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
248 ;; confused. Also, don't use the "not-modified" function to clear the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
249 ;; modification flag; instead use set-buffer-modified-p. This prevents
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
250 ;; extra messages from flashing.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
251 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
252 ;; Revision 2.13 91/09/04 14:35:41 geoff
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
253 ;; Fix a spelling error in a comment. Add code to handshake with the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
254 ;; ispell process before sending anything to it.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
255 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
256 ;; Revision 2.12 91/09/03 20:14:21 geoff
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
257 ;; Add Sebastian Kremer's multiple-language support.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
258 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
259 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
260 ;; Walt Buehring
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
261 ;; Texas Instruments - Computer Science Center
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
262 ;; ARPA: Buehring%TI-CSL@CSNet-Relay
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
263 ;; UUCP: {smu, texsun, im4u, rice} ! ti-csl ! buehring
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
264 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
265 ;; ispell-region and associated routines added by
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
266 ;; Perry Smith
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
267 ;; pedz@bobkat
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
268 ;; Tue Jan 13 20:18:02 CST 1987
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
269 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
270 ;; extensively modified by Mark Davies and Andrew Vignaux
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
271 ;; {mark,andrew}@vuwcomp
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
272 ;; Sun May 10 11:45:04 NZST 1987
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
273 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
274 ;; Ken Stevens ARPA: k.stevens@ieee.org
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
275 ;; Tue Jan 3 16:59:07 PST 1989
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
276 ;; This file has overgone a major overhaul to be compatible with ispell
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
277 ;; version 2.1. Most of the functions have been totally rewritten, and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
278 ;; many user-accessible variables have been added. The syntax table has
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
279 ;; been removed since it didn't work properly anyway, and a filter is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
280 ;; used rather than a buffer. Regular expressions are used based on
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
281 ;; ispell's internal definition of characters (see ispell(4)).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
282 ;; Some new updates:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
283 ;; - Updated to version 3.0 to include terse processing.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
284 ;; - Added a variable for the look command.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
285 ;; - Fixed a bug in ispell-word when cursor is far away from the word
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
286 ;; that is to be checked.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
287 ;; - Ispell places the incorrect word or guess in the minibuffer now.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
288 ;; - fixed a bug with 'l' option when multiple windows are on the screen.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
289 ;; - lookup-words just didn't work with the process filter. Fixed.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
290 ;; - Rewrote the process filter to make it cleaner and more robust
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
291 ;; in the event of a continued line not being completed.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
292 ;; - Made ispell-init-process more robust in handling errors.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
293 ;; - Fixed bug in continuation location after a region has been modified by
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
294 ;; correcting a misspelling.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
295 ;; Mon 17 Sept 1990
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
296 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
297 ;; Sebastian Kremer <sk@thp.uni-koeln.de>
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
298 ;; Wed Aug 7 14:02:17 MET DST 1991
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
299 ;; - Ported ispell-complete-word from Ispell 2 to Ispell 3.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
300 ;; - Added ispell-kill-ispell command.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
301 ;; - Added ispell-dictionary and ispell-dictionary-alist variables to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
302 ;; support other than default language. See their docstrings and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
303 ;; command ispell-change-dictionary.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
304 ;; - (ispelled it :-)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
305 ;; - Added ispell-skip-tib variable to support the tib bibliography
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
306 ;; program.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
309 ;; **********************************************************************
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
310 ;; The following variables should be set according to personal preference
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
311 ;; and location of binaries:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
312 ;; **********************************************************************
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
314 ;; ******* THIS FILE IS WRITTEN FOR ISPELL VERSION 3.1
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
318 (defgroup ispell nil
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
319 "Spell checking using ispell"
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
320 :group 'processes)
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
321
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
323 (defcustom ispell-highlight-p t
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
324 "*Highlight spelling errors when non-nil."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
325 :type 'boolean
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
326 :group 'ispell)
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
327
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
328 (defcustom ispell-highlight-face 'highlight
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 "*The face used for Ispell highlighting. For Emacses with overlays.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 Possible values are `highlight', `modeline', `secondary-selection',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 `region', and `underline'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 This variable can be set by the user to whatever face they desire.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 It's most convenient if the cursor color and highlight color are
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
334 slightly different."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
335 :type 'face
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
336 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
338 (defcustom ispell-check-comments t
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
339 "*If nil, don't check spelling of comments."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
340 :type 'boolean
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
341 :group 'ispell)
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
342
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
343 (defcustom ispell-query-replace-choices nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 "*Corrections made throughout region when non-nil.
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
345 Uses `query-replace' (\\[query-replace]) for corrections."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
346 :type 'boolean
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
347 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
349 (defcustom ispell-skip-tib nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 "*Does not spell check `tib' bibliography references when non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 Skips any text between strings matching regular expressions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 `ispell-tib-ref-beginning' and `ispell-tib-ref-end'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 TeX users beware: Any field starting with [. will skip until a .] -- even
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 your whole buffer -- unless you set `ispell-skip-tib' to nil. That includes
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
356 a [.5mm] type of number...."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
357 :type 'boolean
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
358 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (defvar ispell-tib-ref-beginning "[[<]\\."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 "Regexp matching the beginning of a Tib reference.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 (defvar ispell-tib-ref-end "\\.[]>]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 "Regexp matching the end of a Tib reference.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
366 (defcustom ispell-keep-choices-win t
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 "*When not nil, the `*Choices*' window remains for spelling session.
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
368 This minimizes redisplay thrashing."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
369 :type 'boolean
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
370 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
372 (defcustom ispell-choices-win-default-height 2
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 "*The default size of the `*Choices*' window, including status line.
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
374 Must be greater than 1."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
375 :type 'integer
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
376 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
378 (defcustom ispell-program-name "ispell"
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
379 "Program invoked by \\[ispell-word] and \\[ispell-region] commands."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
380 :type 'string
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
381 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
383 (defcustom ispell-alternate-dictionary
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 (cond ((file-exists-p "/usr/dict/web2") "/usr/dict/web2")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 ((file-exists-p "/usr/share/dict/web2") "/usr/share/dict/web2")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 ((file-exists-p "/usr/dict/words") "/usr/dict/words")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 ((file-exists-p "/usr/lib/dict/words") "/usr/lib/dict/words")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 ((file-exists-p "/usr/share/dict/words") "/usr/share/dict/words")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 ((file-exists-p "/sys/dict") "/sys/dict")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 (t "/usr/dict/words"))
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
391 "*Alternate dictionary for spelling help."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
392 :type 'file
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
393 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
395 (defcustom ispell-complete-word-dict ispell-alternate-dictionary
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
396 "*Dictionary used for word completion."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
397 :type 'file
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
398 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 (defvar ispell-grep-command "egrep"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 "Name of the grep command for search processes.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 (defvar ispell-grep-options "-i"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 "String of options to use when running the program in `ispell-grep-command'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 Should probably be \"-i\" or \"-e\".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 Some machines (like the NeXT) don't support \"-i\"")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (defvar ispell-look-command "look"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 "Name of the look command for search processes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 This must be an absolute file name.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
412 (defcustom ispell-look-p `(file-exists-p ispell-look-command)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 "*Non-nil means use `look' rather than `grep'.
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
414 Default is based on whether `look' seems to be available."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
415 :type 'boolean
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
416 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
418 (defcustom ispell-have-new-look nil
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
419 "*Non-nil means use the `-r' option (regexp) when running `look'."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
420 :type 'boolean
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
421 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 (defvar ispell-look-options (if ispell-have-new-look "-dfr" "-df")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 "String of command options for `ispell-look-command'.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (defvar ispell-use-ptys-p nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 "When non-nil, Emacs uses ptys to communicate with Ispell.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 When nil, Emacs uses pipes.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
430 (defcustom ispell-following-word nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 "*Non-nil means `ispell-word' checks the word around or after point.
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
432 Otherwise `ispell-word' checks the preceding word."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
433 :type 'boolean
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
434 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
436 (defcustom ispell-help-in-bufferp nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 "*Non-nil means display interactive keymap help in a buffer.
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
438 Otherwise use the minibuffer."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
439 :type 'boolean
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
440 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
442 (defcustom ispell-quietly nil
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
443 "*Non-nil means suppress messages in `ispell-word'."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
444 :type 'boolean
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
445 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
447 (defcustom ispell-format-word (function upcase)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 "*Formatting function for displaying word being spell checked.
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
449 The function must take one string argument and return a string."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
450 :type 'function
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
451 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 ;;;###autoload
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
454 (defcustom ispell-personal-dictionary nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 "*File name of your personal spelling dictionary, or nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used,
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
457 where DICTNAME is the name of your default dictionary."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
458 :type 'file
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
459 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
461 (defcustom ispell-silently-savep nil
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
462 "*When non-nil, save the personal dictionary without confirmation."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
463 :type 'boolean
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
464 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 ;;; This variable contains the current dictionary being used if the ispell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 ;;; process is running. Otherwise it contains the global default.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (defvar ispell-dictionary nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 "If non-nil, a dictionary to use instead of the default one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 This is passed to the ispell process using the `-d' switch and is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 used as key in `ispell-dictionary-alist' (which see).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 You should set this variable before your first use of Emacs spell-checking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 commands in the Emacs session, or else use the \\[ispell-change-dictionary]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 command to change it. Otherwise, this variable only takes effect in a newly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 started Ispell process.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
478 (defcustom ispell-extra-args nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 "*If non-nil, a list of extra switches to pass to the Ispell program.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 For example, '(\"-W\" \"3\") to cause it to accept all 1-3 character
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 words as correct. See also `ispell-dictionary-alist', which may be used
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
482 for language-specific arguments."
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
483 :type '(repeat string)
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
484 :group 'ispell)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
486 ;;; The preparation of the menu bar menu must be autoloaded
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
487 ;;; because otherwise this file gets autoloaded every time Emacs starts
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
488 ;;; so that it can set up the menus and determine keyboard equivalents.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
489
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 (defvar ispell-dictionary-alist-1 ; sk 9-Aug-1991 18:28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 '((nil ; default (english.aff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 ("english" ; make english explicitly selectable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 ("british" ; british version
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B" "-d" "british") nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 ("deutsch" ; deutsch.aff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 ("deutsch8"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 "[a-zA-Z\304\326\334\344\366\337\374]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 "[^a-zA-Z\304\326\334\344\366\337\374]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 "[']" t ("-C" "-d" "deutsch") "~latin1")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 ("nederlands" ; nederlands.aff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 "[A-Za-z\300-\305\307\310-\317\322-\326\331-\334\340-\345\347\350-\357\361\362-\366\371-\374]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 "[^A-Za-z\300-\305\307\310-\317\322-\326\331-\334\340-\345\347\350-\357\361\362-\366\371-\374]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 "[']" t ("-C") nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 ("nederlands8" ; dutch8.aff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 "[A-Za-z\300-\305\307\310-\317\322-\326\331-\334\340-\345\347\350-\357\361\362-\366\371-\374]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 "[^A-Za-z\300-\305\307\310-\317\322-\326\331-\334\340-\345\347\350-\357\361\362-\366\371-\374]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 "[']" t ("-C") nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 (defvar ispell-dictionary-alist-2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 '(("svenska" ;7 bit swedish mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 "[A-Za-z}{|\\133\\135\\\\]" "[^A-Za-z}{|\\133\\135\\\\]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 "[']" nil ("-C") nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 ("svenska8" ;8 bit swedish mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 "[A-Za-z\345\344\366\305\304\366]" "[^A-Za-z\345\344\366\305\304\366]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 "[']" nil ("-C" "-d" "svenska") "~list") ; Add `"-T" "list"' instead?
126
1370575f1259 Import from CVS: tag xemacs-20-1p1
cvs
parents: 124
diff changeset
521 ("norsk" ;8 bit norwegian mode
1370575f1259 Import from CVS: tag xemacs-20-1p1
cvs
parents: 124
diff changeset
522 "[A-Za-z\351\346\370\345\311\306\330\305]" "[^A-Za-z\351\346\370\345\311\306\330\305]"
1370575f1259 Import from CVS: tag xemacs-20-1p1
cvs
parents: 124
diff changeset
523 "[']" nil ("-C" "-d" "norsk") "~list")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 ("francais7"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 "[A-Za-z]" "[^A-Za-z]" "[`'^---]" t nil nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 ("francais" ; francais.aff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 "[---']" t nil "~list")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 ("francais-tex" ; francais.aff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 "[---'^`\"]" t nil "~tex")
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
534 ("italiano" ; italiano.aff
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
535 "[A-Za-z\300\310\311\314\315\316\322\331\332\340\350\351\354\355\356\362\371\372]"
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
536 "[^A-Za-z\300\310\311\314\315\316\322\331\332\340\350\351\354\355\356\362\371\372]"
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
537 "[']" t ("-d" "italiano") "~list")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 ("dansk" ; dansk.aff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 "[A-Z\306\330\305a-z\346\370\345]" "[^A-Z\306\330\305a-z\346\370\345]"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 "" nil ("-C") nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 ;;; ispell-dictionary-alist is set up from two subvariables above
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 ;;; to avoid having very long lines in loaddefs.el.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 (defvar ispell-dictionary-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 (append ispell-dictionary-alist-1 ispell-dictionary-alist-2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 "An alist of dictionaries and their associated parameters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 Each element of this list is also a list:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 \(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 ISPELL-ARGS EXTENDED-CHARACTER-MODE\)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 DICTIONARY-NAME is a possible value of variable `ispell-dictionary', nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 means the default dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 CASECHARS is a regular expression of valid characters that comprise a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 NOT-CASECHARS is the opposite regexp of CASECHARS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 OTHERCHARS is a regular expression of other characters that are valid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 in word constructs. Otherchars cannot be adjacent to each other in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 word, nor can they begin or end a word. This implies we can't check
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 \"Stevens'\" as a correct possessive and other correct formations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 Hint: regexp syntax requires the hyphen to be declared first here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 MANY-OTHERCHARS-P is non-nil if many otherchars are to be allowed in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 word instead of only one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 ISPELL-ARGS is a list of additional arguments passed to the ispell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 subprocess.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 EXTENDED-CHARACTER-MODE should be used when dictionaries are used which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 have been configured in an Ispell affix file. (For example, umlauts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 can be encoded as \\\"a, a\\\", \"a, ...) Defaults are ~tex and ~nroff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 in English. This has the same effect as the command-line `-T' option.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 The buffer Major Mode controls Ispell's parsing in tex or nroff mode,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 but the dictionary can control the extended character mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 Both defaults can be overruled in a buffer-local fashion. See
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 `ispell-parsing-keyword' for details on this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 Note that the CASECHARS and OTHERCHARS slots of the alist should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 contain the same character set as casechars and otherchars in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 language.aff file \(e.g., english.aff\).")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 (defvar ispell-menu-map nil "Key map for ispell menu")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 ;;;###autoload
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
594 (defvar ispell-menu-xemacs nil "Spelling menu for XEmacs.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
596 ;;; Break out XEmacs menu and split into several calls to avoid having
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 ;;; long lines in loaddefs.el. Detect need off following constant.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 ;;;###autoload
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
600 (defconst ispell-menu-map-needed ; make sure this is not XEmacs
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 (and (not ispell-menu-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 (string-lessp "19" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 ;; make sure this isn't XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 (not (string-match "XEmacs" emacs-version))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
607 ;;; Set up dictionary
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 (if ispell-menu-map-needed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 (let ((dicts (reverse (cons (cons "default" nil) ispell-dictionary-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 (setq ispell-menu-map (make-sparse-keymap "Spell"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 ;; add the dictionaries to the bottom of the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 (while dicts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 (setq name (car (car dicts))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 dicts (cdr dicts))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 (if (stringp name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 (define-key ispell-menu-map (vector (intern name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 (cons (concat "Select " (capitalize name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 (list 'lambda () '(interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 (list 'ispell-change-dictionary name))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 ;;; define commands in menu in opposite order you want them to appear.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 (if ispell-menu-map-needed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 (define-key ispell-menu-map [ispell-change-dictionary]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 '("Change Dictionary" . ispell-change-dictionary))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 (define-key ispell-menu-map [ispell-kill-ispell]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 '("Kill Process" . ispell-kill-ispell))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 (define-key ispell-menu-map [ispell-pdict-save]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 '("Save Dictionary" . (lambda () (interactive) (ispell-pdict-save t t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 (define-key ispell-menu-map [ispell-complete-word]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 '("Complete Word" . ispell-complete-word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 (define-key ispell-menu-map [ispell-complete-word-interior-frag]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 '("Complete Word Frag" . ispell-complete-word-interior-frag))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 (if ispell-menu-map-needed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 (define-key ispell-menu-map [ispell-continue]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 '("Continue Check" . ispell-continue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 (define-key ispell-menu-map [ispell-word]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 '("Check Word" . ispell-word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 (define-key ispell-menu-map [ispell-region]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 '("Check Region" . ispell-region))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 (define-key ispell-menu-map [ispell-buffer]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 '("Check Buffer" . ispell-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 (if ispell-menu-map-needed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 (define-key ispell-menu-map [ispell-message]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 '("Check Message" . ispell-message))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 (define-key ispell-menu-map [ispell-help]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 ;; use (x-popup-menu last-nonmenu-event(list "" ispell-help-list)) ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 '("Help" . (lambda () (interactive) (describe-function 'ispell-help))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 (put 'ispell-region 'menu-enable 'mark-active)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 (fset 'ispell-menu-map (symbol-value 'ispell-menu-map))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 ;;; XEmacs version 19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 (if (and (string-lessp "19" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 (string-match "Lucid" emacs-version)
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 120
diff changeset
664 (not (and (boundp 'infodock-version) infodock-version))
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 120
diff changeset
665 (featurep 'menubar)
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 120
diff changeset
666 (or current-menubar default-menubar))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 (let ((dicts (cons (cons "default" nil) ispell-dictionary-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 (current-menubar (or current-menubar default-menubar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 (menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 '(["Help" (describe-function 'ispell-help) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 ;;["Help" (popup-menu ispell-help-list) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 ["Check Message" ispell-message t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 ["Check Buffer" ispell-buffer t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 ["Check Word" ispell-word t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 ["Check Region" ispell-region (or (not zmacs-regions) (mark))]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 ["Continue Check" ispell-continue t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 ["Complete Word Frag"ispell-complete-word-interior-frag t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 ["Complete Word" ispell-complete-word t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 ["Kill Process" ispell-kill-ispell t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 "-"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 ["Save Dictionary" (ispell-pdict-save t t) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 ["Change Dictionary" ispell-change-dictionary t]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 (while dicts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 (setq name (car (car dicts))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 dicts (cdr dicts))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 (if (stringp name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 (setq menu (append menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (vector (concat "Select " (capitalize name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 (list 'ispell-change-dictionary name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 t))))))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
693 (setq ispell-menu-xemacs menu)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 (if current-menubar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 (delete-menu-item '("Edit" "Spell")) ; in case already defined
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
697 (add-menu '("Edit") "Spell" ispell-menu-xemacs)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 ;;; The following are used by ispell, and should not be changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 ;;; The version must be 3.1 or greater for this version of ispell.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 ;;; There is an incompatibility between version 3.1.12 and lower versions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 (defconst ispell-required-version '("3.1." 12)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 "Ispell versions with which this version of ispell.el is known to work.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 (defvar ispell-offset 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 "Offset that maps protocol differences between ispell 3.1 versions.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 (defun ispell-get-casechars ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 (nth 1 (assoc ispell-dictionary ispell-dictionary-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 (defun ispell-get-not-casechars ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (nth 2 (assoc ispell-dictionary ispell-dictionary-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 (defun ispell-get-otherchars ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 (nth 3 (assoc ispell-dictionary ispell-dictionary-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 (defun ispell-get-many-otherchars-p ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 (nth 4 (assoc ispell-dictionary ispell-dictionary-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 (defun ispell-get-ispell-args ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 (nth 5 (assoc ispell-dictionary ispell-dictionary-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 (defun ispell-get-extended-character-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 (nth 6 (assoc ispell-dictionary ispell-dictionary-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 (defvar ispell-process nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 "The process object for Ispell.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 (defvar ispell-pdict-modified-p nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 "Non-nil means personal dictionary has modifications to be saved.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 ;;; If you want to save the dictionary when quitting, must do so explicitly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 ;;; When non-nil, the spell session is terminated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 ;;; When numeric, contains cursor location in buffer, and cursor remains there.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 (defvar ispell-quit nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 (defvar ispell-filter nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 "Output filter from piped calls to Ispell.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 (defvar ispell-filter-continue nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 "Control variable for Ispell filter function.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 (defvar ispell-process-directory nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 "The directory where `ispell-process' was started.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 (defvar ispell-query-replace-marker (make-marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 "Marker for `query-replace' processing.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 (defvar ispell-checking-message nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 "Non-nil when we're checking a mail message")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 (defconst ispell-choices-buffer "*Choices*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 (defvar ispell-overlay nil "Overlay variable for Ispell highlighting.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 ;;; *** Buffer Local Definitions ***
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 ;;; This is the local dictionary to use. When nil the default dictionary will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 ;;; be used. Do not redefine default value or it will override the global!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 (defvar ispell-local-dictionary nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 "If non-nil, a dictionary to use for Ispell commands in this buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 The value must be a string dictionary name in `ispell-dictionary-alist'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 This variable becomes buffer-local when set in any fashion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 Setting ispell-local-dictionary to a value has the same effect as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 calling \\[ispell-change-dictionary] with that value. This variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 is automatically set when defined in the file with either
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 `ispell-dictionary-keyword' or the Local Variable syntax.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 (make-variable-buffer-local 'ispell-local-dictionary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 ;; Use default directory, unless locally set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 (set-default 'ispell-local-dictionary nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 (defconst ispell-words-keyword "LocalWords: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 "The keyword for local oddly-spelled words to accept.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 The keyword will be followed by any number of local word spellings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 There can be multiple of these keywords in the file.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 (defconst ispell-dictionary-keyword "Local IspellDict: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 "The keyword for local dictionary definitions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 There should be only one dictionary keyword definition per file, and it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 should be followed by a correct dictionary name in `ispell-dictionary-alist'.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 (defconst ispell-parsing-keyword "Local IspellParsing: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 "The keyword for overriding default Ispell parsing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 Determined by the buffer's major mode and extended-character mode as well as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 the default dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 The above keyword string should be followed by `latex-mode' or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 `nroff-mode' to put the current buffer into the desired parsing mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 Extended character mode can be changed for this buffer by placing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 a `~' followed by an extended-character mode -- such as `~.tex'.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 (defvar ispell-skip-sgml nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 "Skips spell checking of SGML tags and entity references when non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 This variable is set when major-mode is sgml-mode or html-mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 (defvar ispell-local-pdict ispell-personal-dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 "A buffer local variable containing the current personal dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 If non-nil, the value must be a string, which is a file name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 If you specify a personal dictionary for the current buffer which is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 different from the current personal dictionary, the effect is similar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 to calling \\[ispell-change-dictionary]. This variable is automatically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 set when defined in the file with either `ispell-pdict-keyword' or the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 local variable syntax.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 (make-variable-buffer-local 'ispell-local-pdict)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 (defconst ispell-pdict-keyword "Local IspellPersDict: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 "The keyword for defining buffer local dictionaries.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 (defvar ispell-buffer-local-name nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 "Contains the buffer name if local word definitions were used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 Ispell is then restarted because the local words could conflict.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 (defvar ispell-parser 'use-mode-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 "*Indicates whether ispell should parse the current buffer as TeX Code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 Special value `use-mode-name' tries to guess using the name of major-mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 Default parser is 'nroff.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 Currently the only other valid parser is 'tex.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 You can set this variable in hooks in your init file -- eg:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 (add-hook 'tex-mode-hook (function (lambda () (setq ispell-parser 'tex))))")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 (defvar ispell-region-end (make-marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 "Marker that allows spelling continuations.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 (defvar ispell-check-only nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 "If non-nil, `ispell-word' does not try to correct the word.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 (and (string-lessp "19" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 (not (boundp 'epoch::version))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 (defalias 'ispell 'ispell-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
844
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
845 ;; XEmacs: \M-$ for whatever reason, drives `make autoloads' bonkers
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
846
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 ;;;###autoload
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
848 (define-key global-map [(meta ?\$)] 'ispell-word)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 (defun ispell-word (&optional following quietly continue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 "Check spelling of word under or before the cursor.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 If the word is not found in dictionary, display possible corrections
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 in a window allowing you to choose one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 With a prefix argument (or if CONTINUE is non-nil),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 resume interrupted spell-checking of a buffer or region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 If optional argument FOLLOWING is non-nil or if `ispell-following-word'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 is non-nil when called interactively, then the following word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 \(rather than preceding\) is checked when the cursor is not over a word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 When the optional argument QUIETLY is non-nil or `ispell-quietly' is non-nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 when called interactively, non-corrective messages are suppressed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 Word syntax described by `ispell-dictionary-alist' (which see).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 This will check or reload the dictionary. Use \\[ispell-change-dictionary]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 or \\[ispell-region] to update the Ispell process."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 (interactive (list nil nil current-prefix-arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 (if continue
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 (ispell-continue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 (if (interactive-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 (setq following ispell-following-word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 quietly ispell-quietly))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 (ispell-accept-buffer-local-defs) ; use the correct dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 (let ((cursor-location (point)) ; retain cursor location
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 (word (ispell-get-word following))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 start end poss replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 ;; destructure return word info list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 (setq start (car (cdr word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 end (car (cdr (cdr word)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 word (car word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 ;; now check spelling of word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 (or quietly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 (message "Checking spelling of %s..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 (funcall ispell-format-word word)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 (process-send-string ispell-process "%\n") ;put in verbose mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 (process-send-string ispell-process (concat "^" word "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 ;; wait until ispell has processed word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 (while (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 (accept-process-output ispell-process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 (not (string= "" (car ispell-filter)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 ;;(process-send-string ispell-process "!\n") ;back to terse mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 (setq ispell-filter (cdr ispell-filter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 (if (listp ispell-filter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 (setq poss (ispell-parse-output (car ispell-filter))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 (cond ((eq poss t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 (or quietly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 (message "%s is correct" (funcall ispell-format-word word))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 ((stringp poss)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 (or quietly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 (message "%s is correct because of root %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 (funcall ispell-format-word word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 (funcall ispell-format-word poss))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 ((null poss) (message "Error in ispell process"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 (ispell-check-only ; called from ispell minor mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 (beep))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 (t ; prompt for correct word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 (setq replace (ispell-command-loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 (car (cdr (cdr poss)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 (car (cdr (cdr (cdr poss))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 (car poss) start end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 (cond ((equal 0 replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 (ispell-add-per-file-word-list (car poss)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 (replace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 (setq word (if (atom replace) replace (car replace))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 cursor-location (+ (- (length word) (- end start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 cursor-location))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 (if (not (equal word (car poss)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 (delete-region start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 (insert word)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 (if (not (atom replace)) ; recheck spelling of replacement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 (goto-char cursor-location)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 (ispell-word following quietly)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 (if (get-buffer ispell-choices-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 (kill-buffer ispell-choices-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 (goto-char cursor-location) ; return to original location
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 (ispell-pdict-save ispell-silently-savep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 (if ispell-quit (setq ispell-quit nil)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 (defun ispell-get-word (following &optional extra-otherchars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 "Return the word for spell-checking according to ispell syntax.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 If optional argument FOLLOWING is non-nil or if `ispell-following-word'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 is non-nil when called interactively, then the following word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 \(rather than preceding\) is checked when the cursor is not over a word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 Optional second argument contains otherchars that can be included in word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 many times.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 Word syntax described by `ispell-dictionary-alist' (which see)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 (let* ((ispell-casechars (ispell-get-casechars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 (ispell-not-casechars (ispell-get-not-casechars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 (ispell-otherchars (ispell-get-otherchars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 (ispell-many-otherchars-p (ispell-get-many-otherchars-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 (word-regexp (concat ispell-casechars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 "+\\("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 ispell-otherchars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 "?"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 (if extra-otherchars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 (concat extra-otherchars "?"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 ispell-casechars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 "+\\)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 (if (or ispell-many-otherchars-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 extra-otherchars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 "*" "?")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 did-it-once
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 start end word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 ;; find the word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 (if (not (looking-at ispell-casechars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 (if following
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 (re-search-forward ispell-casechars (point-max) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 (re-search-backward ispell-casechars (point-min) t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 ;; move to front of word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 (re-search-backward ispell-not-casechars (point-min) 'start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 (while (and (or (looking-at ispell-otherchars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 (and extra-otherchars (looking-at extra-otherchars)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 (not (bobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 (or (not did-it-once)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 ispell-many-otherchars-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 (if (and extra-otherchars (looking-at extra-otherchars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 (backward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 (if (looking-at ispell-casechars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 (re-search-backward ispell-not-casechars (point-min) 'move)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 (setq did-it-once t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 (backward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 (if (looking-at ispell-casechars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 (re-search-backward ispell-not-casechars (point-min) 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 (backward-char -1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 ;; Now mark the word and save to string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 (or (re-search-forward word-regexp (point-max) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 (error "No word found to check!"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 (setq start (match-beginning 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 end (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 word (buffer-substring start end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 (list word start end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 ;;; Global ispell-pdict-modified-p is set by ispell-command-loop and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 ;;; tracks changes in the dictionary. The global may either be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 ;;; a value or a list, whose value is the state of whether the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 ;;; dictionary needs to be saved.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 (defun ispell-pdict-save (&optional no-query force-save)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 "Check to see if the personal dictionary has been modified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 If so, ask if it needs to be saved."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 (interactive (list ispell-silently-savep t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 (if (and ispell-pdict-modified-p (listp ispell-pdict-modified-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 (setq ispell-pdict-modified-p (car ispell-pdict-modified-p)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 (if (or ispell-pdict-modified-p force-save)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 (if (or no-query (y-or-n-p "Personal dictionary modified. Save? "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 (process-send-string ispell-process "#\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 (message "Personal dictionary saved."))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 ;; unassert variable, even if not saved to avoid questioning.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 (setq ispell-pdict-modified-p nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 (defun ispell-command-loop (miss guess word start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 "Display possible corrections from list MISS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 GUESS lists possibly valid affix construction of WORD.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 Returns nil to keep word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 Returns 0 to insert locally into buffer-local dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 Returns string for new chosen word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 Returns list for new replacement word (will be rechecked).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 Highlights the word, which is assumed to run from START to END.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 Global `ispell-pdict-modified-p' becomes a list where the only value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 indicates whether the dictionary has been modified when option `a' or `i' is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 used."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 (let ((textbuf (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 (count ?0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 (line 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 (max-lines (- (window-height) 4)) ; assure 4 context lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 (choices miss)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 (window-min-height (min window-min-height
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 ispell-choices-win-default-height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 (command-characters '( ? ?i ?a ?A ?r ?R ?? ?x ?X ?q ?l ?u ?m ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 (skipped 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 char num result textwin highlighted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 ;; setup the *Choices* buffer with valid data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 (set-buffer (get-buffer-create ispell-choices-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 (setq mode-line-format (concat "-- %b -- word: " word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 ;; XEmacs: turn off the modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 (and (fboundp 'set-specifier)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 (set-specifier has-modeline-p (cons (current-buffer) nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 (if guess
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 (insert "Affix rules generate and capitalize "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 "this word as shown below:\n\t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 (while guess
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 (if (> (+ 4 (current-column) (length (car guess)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 (window-width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 (insert "\n\t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 (setq line (1+ line))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 (insert (car guess) " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 (setq guess (cdr guess)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 (insert "\nUse option `i' if this is a correct composition"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 " from the derivative root.\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 (setq line (+ line (if choices 3 2)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 (while (and choices
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 (< (if (> (+ 7 (current-column) (length (car choices))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 (if (> count ?~) 3 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 (window-width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 (insert "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 (setq line (1+ line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 max-lines))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 ;; not so good if there are over 20 or 30 options, but then, if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 ;; there are that many you don't want to scan them all anyway...
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1069 (when (integerp count)
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1070 (setq count (int-char count)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 (while (memq count command-characters) ; skip command characters.
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1072 (setq count (int-char (1+ count))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 skipped (1+ skipped)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 (insert "(" count ") " (car choices) " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 (setq choices (cdr choices)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 count (1+ count)))
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1077 (setq count (int-char (- count ?0 skipped))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 ;; Assure word is visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 (if (not (pos-visible-in-window-p end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 (sit-for 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 ;; Display choices for misspelled word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 (let ((choices-window (get-buffer-window ispell-choices-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 (if choices-window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 (if (= line (window-height choices-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 (select-window choices-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 ;; *Choices* window changed size. Adjust the choices window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 ;; without scrolling the spelled window when possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 (let ((window-line (- line (window-height choices-window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 (visible (progn (forward-line -1) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 (if (< line ispell-choices-win-default-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 (setq window-line (+ window-line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 (- ispell-choices-win-default-height
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 line))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 (move-to-window-line 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 (forward-line window-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 (set-window-start (selected-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 (if (> (point) visible) visible (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 (goto-char end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 (select-window (previous-window)) ; *Choices* window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 (enlarge-window window-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 ;; Overlay *Choices* window when it isn't showing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 (ispell-overlay-window (max line ispell-choices-win-default-height)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 (switch-to-buffer ispell-choices-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 (goto-char (point-min)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 (select-window (setq textwin (next-window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 ;; highlight word, protecting current buffer status
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 (if ispell-highlight-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 (ispell-highlight-spelling-error start end t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 ;; Loop until a valid choice is made.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 (while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 (eq
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 (setq
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 result
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 (undo-boundary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 (message (concat "C-h or ? for more options; SPC to leave "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 "unchanged, Character to replace word"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 (let ((inhibit-quit t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 (setq char (if (fboundp 'read-char-exclusive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 (read-char-exclusive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 (read-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 skipped 0)
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1129 (if (or quit-flag (eq char ?\C-g)) ; C-g is like typing X
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 (setq char ?X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 quit-flag nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 ;; Adjust num to array offset skipping command characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 (let ((com-chars command-characters))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 (while com-chars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 (if (and (> (car com-chars) ?0) (< (car com-chars) char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 (setq skipped (1+ skipped)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 (setq com-chars (cdr com-chars)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 (setq num (- char ?0 skipped)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 (cond
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1141 ((eq char ? ) nil) ; accept word this time only
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1142 ((eq char ?i) ; accept and insert word into pers dict
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 (process-send-string ispell-process (concat "*" word "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 (setq ispell-pdict-modified-p '(t)) ; dictionary modified!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 nil)
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1146 ((or (eq char ?a) (eq char ?A)) ; accept word without insert
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 (process-send-string ispell-process (concat "@" word "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 (if (null ispell-pdict-modified-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 (setq ispell-pdict-modified-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 (list ispell-pdict-modified-p)))
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1151 (if (eq char ?A) 0)) ; return 0 for ispell-add buffer-local
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1152 ((or (eq char ?r) (eq char ?R)) ; type in replacement
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1153 (if (or (eq char ?R) ispell-query-replace-choices)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 (list (read-string "Query-replacement for: " word) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 (cons (read-string "Replacement for: " word) nil)))
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1156 ((or (eq char ??)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 ;; XEmacs change: help-char may not be an int.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 (eq char (event-to-character
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 (character-to-event help-char)))
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1160 (eq char ?\C-h))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 (ispell-help)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 ;; Quit and move point back.
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1164 ((eq char ?x)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 (ispell-pdict-save ispell-silently-savep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 (message "Exited spell-checking")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 (setq ispell-quit t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 ;; Quit and preserve point.
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1170 ((eq char ?X)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 (ispell-pdict-save ispell-silently-savep)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1172 (message "%s"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 (substitute-command-keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 (concat "Spell-checking suspended;"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 " use C-u \\[ispell-word] to resume")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 (setq ispell-quit (max (point-min)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 (- (point) (length word))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 nil)
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1179 ((eq char ?q)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 (if (y-or-n-p "Really kill Ispell process? ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 (ispell-kill-ispell t) ; terminate process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 (setq ispell-quit (or (not ispell-checking-message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 ispell-pdict-modified-p nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 t)) ; continue if they don't quit.
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1187 ((eq char ?l)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 (let ((new-word (read-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 "Lookup string (`*' is wildcard): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 (new-line 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 (if new-word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 (set-buffer (get-buffer-create
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 ispell-choices-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 (setq count ?0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 skipped 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 mode-line-format (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 "-- %b -- word: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 new-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 miss (lookup-words new-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 choices miss)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 (while (and choices ; adjust choices window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 (< (if (> (+ 7 (current-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 (length (car choices))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 (if (> count ?~) 3 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 (window-width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 (insert "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 (setq new-line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 (1+ new-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 new-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 max-lines))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 (while (memq count command-characters)
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1217 (setq count (int-char (1+ count))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 skipped (1+ skipped)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 (insert "(" count ") " (car choices) " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 (setq choices (cdr choices)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 count (1+ count)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 (setq count (- count ?0 skipped)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 (select-window (previous-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 (if (and (/= new-line line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 (> (max line new-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 ispell-choices-win-default-height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 (let* ((minh ispell-choices-win-default-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 (gr-bl (if (< line minh) ; blanks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 (- minh line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 (shr-bl (if (< new-line minh) ; blanks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 (- minh new-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 (if (> new-line line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 (enlarge-window (- new-line line gr-bl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 (shrink-window (- line new-line shr-bl)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 (setq line new-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 (select-window (next-window)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 t) ; reselect from new choices
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1240 ((eq char ?u)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 (process-send-string ispell-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 (concat "*" (downcase word) "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 (setq ispell-pdict-modified-p '(t)) ; dictionary modified!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 nil)
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1245 ((eq char ?m) ; type in what to insert
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 (process-send-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 ispell-process (concat "*" (read-string "Insert: " word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 (setq ispell-pdict-modified-p '(t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 (cons word nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 ((and (>= num 0) (< num count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 (if ispell-query-replace-choices ; Query replace flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 (list (nth num miss) 'query-replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 (nth num miss)))
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1255 ((eq char ?\C-l)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 (redraw-display) t)
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1257 ((eq char ?\C-r)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 (save-window-excursion (recursive-edit)) t)
161
28f395d8dc7a Import from CVS: tag r20-3b7
cvs
parents: 126
diff changeset
1259 ((eq char ?\C-z)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 (funcall (key-binding "\C-z"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 (t (ding) t))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 ;; protected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 (if ispell-highlight-p ; unhighlight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 (select-window textwin)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 (ispell-highlight-spelling-error start end))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 (defun ispell-help ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 "Display a list of the options available when a misspelling is encountered.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 Selections are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 DIGIT: Replace the word with a digit offered in the *Choices* buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 SPC: Accept word this time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 `i': Accept word and insert into private dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 `a': Accept word for this session.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 `A': Accept word and place in `buffer-local dictionary'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 `r': Replace word with typed-in value. Rechecked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 `R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 `?': Show these commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 `x': Exit spelling buffer. Move cursor to original point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 `X': Exit spelling buffer. Leaves cursor at the current point, and permits
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 the aborted check to be completed later.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 `q': Quit spelling session (Kills ispell process).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 `l': Look up typed-in replacement in alternate dictionary. Wildcards okay.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 `u': Like `i', but the word is lower-cased first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 `m': Like `i', but allows one to include dictionary completion information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 `C-l': redraws screen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 `C-r': recursive edit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 `C-z': suspend emacs or iconify frame"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 (let ((help-1 (concat "[r/R]eplace word; [a/A]ccept for this session; "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 "[i]nsert into private dictionary"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 (help-2 (concat "[l]ook a word up in alternate dictionary; "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 "e[x/X]it; [q]uit session"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 (help-3 (concat "[u]ncapitalized insert into dictionary. "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 "Type 'C-h d ispell-help' for more help")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 (if ispell-help-in-bufferp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 (ispell-overlay-window 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 (switch-to-buffer (get-buffer-create "*Ispell Help*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 (insert (concat help-1 "\n" help-2 "\n" help-3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 (sit-for 5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 (kill-buffer "*Ispell Help*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 (select-window (minibuffer-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 ;;(enlarge-window 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 (cond ((and (< emacs-minor-version 12)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 (string-match "Lucid" emacs-version))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 (message help-3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 (enlarge-window 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 (message help-2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 (enlarge-window 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 (message help-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 (goto-char (point-min)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 (if (string-lessp "19" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 (message nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 (enlarge-window 2)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1325 ;; Make sure we display the minibuffer
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1326 ;; in this window, not some other.
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 78
diff changeset
1327 (if (fboundp 'set-minibuffer-window)
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 78
diff changeset
1328 (set-minibuffer-window (selected-window)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 (insert (concat help-1 "\n" help-2 "\n" help-3))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 (sit-for 5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 (erase-buffer)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 (defun lookup-words (word &optional lookup-dict)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 "Look up word in word-list dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 A `*' serves as a wild card. If no wild cards, `look' is used if it exists.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 Otherwise the variable `ispell-grep-command' contains the command used to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 search for the words (usually egrep).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 Optional second argument contains the dictionary to use; the default is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 `ispell-alternate-dictionary'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 ;; We don't use the filter for this function, rather the result is written
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 ;; into a buffer. Hence there is no need to save the filter values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 (if (null lookup-dict)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 (setq lookup-dict ispell-alternate-dictionary))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 (let* ((process-connection-type ispell-use-ptys-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 (wild-p (string-match "\\*" word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 (look-p (and ispell-look-p ; Only use look for an exact match.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 (or ispell-have-new-look (not wild-p))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 (ispell-grep-buffer (get-buffer-create "*Ispell-Temp*")) ; result buf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 (prog (if look-p ispell-look-command ispell-grep-command))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 (args (if look-p ispell-look-options ispell-grep-options))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 status results loc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 (message "Starting \"%s\" process..." (file-name-nondirectory prog))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 (set-buffer ispell-grep-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 (if look-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 ;; convert * to .*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 (insert "^" word "$")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 (while (search-backward "*" nil t) (insert "."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 (setq word (buffer-string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 (erase-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 (setq status (call-process prog nil t nil args word lookup-dict))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 ;; grep returns status 1 and no output when word not found, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 ;; is a perfectly normal thing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 (if (stringp status)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 (setq results (cons (format "error: %s exited with signal %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 (file-name-nondirectory prog) status)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 results))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 ;; else collect words into `results' in FIFO order
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 ;; assure we've ended with \n
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 (or (bobp) (= (preceding-char) ?\n) (insert ?\n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 (while (not (bobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 (setq loc (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 (forward-line -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 (setq results (cons (buffer-substring (point) (1- loc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 results)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 ;; protected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 (kill-buffer ispell-grep-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 (if (and results (string-match ".+: " (car results)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 (error "%s error: %s" ispell-grep-command (car results))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 results))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 ;;; "ispell-filter" is a list of output lines from the generating function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 ;;; Each full line (ending with \n) is a separate item on the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 ;;; "output" can contain multiple lines, part of a line, or both.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 ;;; "start" and "end" are used to keep bounds on lines when "output" contains
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 ;;; multiple lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 ;;; "ispell-filter-continue" is true when we have received only part of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 ;;; line as output from a generating function ("output" did not end with \n)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1396 ;;; THIS FUNCTION WILL FAIL IF THE PROCESS OUTPUT DOESN'T END WITH \n!
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 ;;; This is the case when a process dies or fails. The default behavior
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 ;;; in this case treats the next input received as fresh input.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 (defun ispell-filter (process output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 "Output filter function for ispell, grep, and look."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 (let ((start 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 (continue t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 (while continue
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 (setq end (string-match "\n" output start)) ; get text up to the newline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 ;; If we get out of sync and ispell-filter-continue is asserted when we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 ;; are not continuing, treat the next item as a separate list. When
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 ;; ispell-filter-continue is asserted, ispell-filter *should* always be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 ;; list!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 ;; Continue with same line (item)?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 (if (and ispell-filter-continue ispell-filter (listp ispell-filter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 ;; Yes. Add it to the prev item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 (setcar ispell-filter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 (concat (car ispell-filter) (substring output start end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 ;; No. This is a new line and item.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 (setq ispell-filter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 (cons (substring output start end) ispell-filter)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 (if (null end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 ;; We've completed reading the output, but didn't finish the line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 (setq ispell-filter-continue t continue nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 ;; skip over newline, this line complete.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 (setq ispell-filter-continue nil end (1+ end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 (if (= end (length output)) ; No more lines in output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 (setq continue nil) ; so we can exit the filter.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 (setq start end)))))) ; else move start to next line of input
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 ;;; This function destroys the mark location if it is in the word being
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 ;;; highlighted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 (defun ispell-highlight-spelling-error-generic (start end &optional highlight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 "Highlight the word from START to END with a kludge using `inverse-video'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 When the optional third arg HIGHLIGHT is set, the word is highlighted;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 otherwise it is displayed normally."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 (let ((modified (buffer-modified-p)) ; don't allow this fn to modify buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 (buffer-read-only nil) ; Allow highlighting read-only buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 (text (buffer-substring start end)) ; Save highlight region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 (inhibit-quit t) ; inhibit interrupt processing here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 (buffer-undo-list t)) ; don't clutter the undo list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 (delete-region start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 (insert-char ? (- end start)) ; mimimize amount of redisplay
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 (sit-for 0) ; update display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 (if highlight (setq inverse-video (not inverse-video))) ; toggle video
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 (delete-region start end) ; delete whitespace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 (insert text) ; insert text in inverse video.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 (sit-for 0) ; update display showing inverse video.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 (if highlight (setq inverse-video (not inverse-video))) ; toggle video
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 (set-buffer-modified-p modified))) ; don't modify if flag not set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 (defun ispell-highlight-spelling-error-lucid (start end &optional highlight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 "Highlight the word from START to END using `isearch-highlight'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 When the optional third arg HIGHLIGHT is set, the word is highlighted,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 otherwise it is displayed normally."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 (if highlight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 (isearch-highlight start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 (isearch-dehighlight t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 ;;(sit-for 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 (defun ispell-highlight-spelling-error-overlay (start end &optional highlight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 "Highlight the word from START to END using overlays.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 When the optional third arg HIGHLIGHT is set, the word is highlighted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 otherwise it is displayed normally.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 The variable `ispell-highlight-face' selects the face to use for highlighting."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 (if highlight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 (setq ispell-overlay (make-overlay start end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 (overlay-put ispell-overlay 'face ispell-highlight-face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 (delete-overlay ispell-overlay)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 (defun ispell-highlight-spelling-error (start end &optional highlight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 ((string-match "Lucid" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 (ispell-highlight-spelling-error-lucid start end highlight))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 ((and (string-lessp "19" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 (featurep 'faces) window-system)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 (ispell-highlight-spelling-error-overlay start end highlight))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 (t (ispell-highlight-spelling-error-generic start end highlight))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 (defun ispell-overlay-window (height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 "Create a window covering the top HEIGHT lines of the current window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 Ensure that the line above point is still visible but otherwise avoid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 scrolling the current window. Leave the new window selected."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 (let ((oldot (save-excursion (forward-line -1) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 (top (save-excursion (move-to-window-line height) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 ;; If line above old point (line starting at olddot) would be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 ;; hidden by new window, scroll it to just below new win
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 ;; otherwise set top line of other win so it doesn't scroll.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 (if (< oldot top) (setq top oldot))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 ;; NB: Lemacs 19.9 bug: If a window of size N (N includes the mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 ;; line) is demanded, the last line is not visible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 ;; At least this happens on AIX 3.2, lemacs w/ Motif, font 9x15.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 ;; So we increment the height for this case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 (if (string-match "19\.9.*Lucid" (emacs-version))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 (setq height (1+ height)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 (split-window nil height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 (set-window-start (next-window) top))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 ;;; Should we add a compound word match return value?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 (defun ispell-parse-output (output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 "Parse the OUTPUT string from Ispell and return:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 1: t for an exact match.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 2: A string containing the root word for a match via suffix removal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 3: A list of possible correct spellings of the format:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 '(\"ORIGINAL-WORD\" OFFSET MISS-LIST GUESS-LIST)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 ORIGINAL-WORD is a string of the possibly misspelled word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 OFFSET is an integer giving the line offset of the word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 MISS-LIST and GUESS-LIST are possibly null lists of guesses and misses."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 ((string= output "") t) ; for startup with pipes...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 ((string= output "*") t) ; exact match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 ((string= output "-") t) ; compound word match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 ((string= (substring output 0 1) "+") ; found cuz of root word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 (substring output 2)) ; return root word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 (t ; need to process &, ?, and #'s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 (let ((type (substring output 0 1)) ; &, ?, or #
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 (original-word (substring output 2 (string-match " " output 2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 (cur-count 0) ; contains number of misses + guesses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 count miss-list guess-list offset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 (setq output (substring output (match-end 0))) ; skip over misspelling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 (if (string= type "#")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 (setq count 0) ; no misses for type #
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 (setq count (string-to-int output) ; get number of misses.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 output (substring output (1+ (string-match " " output 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 (setq offset (string-to-int output))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 (if (string= type "#") ; No miss or guess list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 (setq output nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 (setq output (substring output (1+ (string-match " " output 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 (while output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 (let ((end (string-match ", \\|\\($\\)" output))) ; end of miss/guess.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 (setq cur-count (1+ cur-count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 (if (> cur-count count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 (setq guess-list (cons (substring output 0 end) guess-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 (setq miss-list (cons (substring output 0 end) miss-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 (if (match-end 1) ; True only when at end of line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 (setq output nil) ; no more misses or guesses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 (setq output (substring output (+ end 2))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 (list original-word offset miss-list guess-list)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 (defun check-ispell-version ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 ;; This is a little wasteful as we actually launch ispell twice: once
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 ;; to make sure it's the right version, and once for real. But people
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 ;; get confused by version mismatches *all* the time (and I've got the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 ;; email to prove it) so I think this is worthwhile. And the -v[ersion]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 ;; option is the only way I can think of to do this that works with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 ;; all versions, since versions earlier than 3.0.09 didn't identify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 ;; themselves on startup.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 (let ((case-fold-search t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 ;; avoid bugs when syntax of `.' changes in various default modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 (default-major-mode 'fundamental-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 status)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 (set-buffer (get-buffer-create " *ispell-tmp*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 (setq status (call-process ispell-program-name nil t nil "-v"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 (if (not (memq status '(0 nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 (error "%s exited with %s %s" ispell-program-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 (if (stringp status) "signal" "code") status))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 (if (not (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 (concat "\\b\\("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 (regexp-quote (car ispell-required-version))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 "\\)\\([0-9]*\\)\\b")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 (error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 "%s version %s* is required: try renaming ispell4.el to ispell.el"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 ispell-program-name (car ispell-required-version))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 ;; check that it is the correct version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 (if (< (car (read-from-string (buffer-substring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 (match-beginning 2) (match-end 2))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 (car (cdr ispell-required-version)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 (setq ispell-offset 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 (kill-buffer (current-buffer)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 (defun ispell-init-process ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 "Check status of Ispell process and start if necessary."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 (if (and ispell-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 (eq (process-status ispell-process) 'run)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 ;; If we're using a personal dictionary, assure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 ;; we're in the same default directory!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 (or (not ispell-personal-dictionary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 (equal ispell-process-directory default-directory)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 (setq ispell-filter nil ispell-filter-continue nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 ;; may need to restart to select new personal dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 (ispell-kill-ispell t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 (message "Starting new Ispell process...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 (sit-for 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 (check-ispell-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 (setq ispell-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 (let ((process-connection-type ispell-use-ptys-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 (apply 'start-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 "ispell" nil ispell-program-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 "-a" ; accept single input lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 "-m" ; make root/affix combos not in dict
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 (let (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 ;; Local dictionary becomes the global dictionary in use.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 (if ispell-local-dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 (setq ispell-dictionary ispell-local-dictionary))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 (setq args (ispell-get-ispell-args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 (if ispell-dictionary ; use specified dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 (setq args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 (append (list "-d" ispell-dictionary) args)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 (if ispell-personal-dictionary ; use specified pers dict
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 (setq args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 (append args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 (list "-p"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 ispell-personal-dictionary)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 (setq args (append args ispell-extra-args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 args)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 ispell-filter nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 ispell-filter-continue nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 ispell-process-directory default-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 (set-process-filter ispell-process 'ispell-filter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 (accept-process-output ispell-process) ; Get version ID line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 (cond ((null ispell-filter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 (error "%s did not output version line" ispell-program-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 ((and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 (stringp (car ispell-filter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 (if (string-match "warning: " (car ispell-filter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 (accept-process-output ispell-process 5) ; 1st was warn msg.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 (stringp (car ispell-filter)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 (null (cdr ispell-filter)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 (string-match "^@(#) " (car ispell-filter)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 ;; got the version line as expected (we already know it's the right
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 ;; version, so don't bother checking again.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 ;; Otherwise, it must be an error message. Show the user.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 ;; But first wait to see if some more output is going to arrive.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 ;; Otherwise we get cool errors like "Can't open ".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 (sleep-for 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 (accept-process-output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 (error "%s" (mapconcat 'identity ispell-filter "\n"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 (setq ispell-filter nil) ; Discard version ID line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 (let ((extended-char-mode (ispell-get-extended-character-mode)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 (if extended-char-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 (process-send-string ispell-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 (concat extended-char-mode "\n"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 (process-kill-without-query ispell-process)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 (defun ispell-kill-ispell (&optional no-error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 "Kill current Ispell process (so that you may start a fresh one).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 With NO-ERROR, just return non-nil if there was no Ispell running."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 (if (not (and ispell-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 (eq (process-status ispell-process) 'run)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 (or no-error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 (error "There is no ispell process running!"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 (kill-process ispell-process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 (setq ispell-process nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 (message "Ispell process killed")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 ;;; ispell-change-dictionary is set in some people's hooks. Maybe this should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 ;;; call ispell-init-process rather than wait for a spell checking command?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 (defun ispell-change-dictionary (dict &optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 "Change `ispell-dictionary' (q.v.) and kill old Ispell process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 A new one will be started as soon as necessary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 By just answering RET you can find out what the current dictionary is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 With prefix argument, set the default directory."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 (list (completing-read
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 "Use new dictionary (RET for current, SPC to complete): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 (cons (cons "default" nil) ispell-dictionary-alist) nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 current-prefix-arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 (if (equal dict "default") (setq dict nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 ;; This relies on completing-read's bug of returning "" for no match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 (cond ((equal dict "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 (message "Using %s dictionary"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 (or ispell-local-dictionary ispell-dictionary "default")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 ((and (equal dict ispell-dictionary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 (or (null ispell-local-dictionary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 (equal dict ispell-local-dictionary)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 ;; Specified dictionary is the default already. No-op
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 (and (interactive-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 (message "No change, using %s dictionary" (or dict "default"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 (t ; reset dictionary!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 (if (assoc dict ispell-dictionary-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 (if (or arg (null dict)) ; set default dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 (setq ispell-dictionary dict))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 (if (null arg) ; set local dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 (setq ispell-local-dictionary dict)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 (error "Illegal dictionary: %s" dict))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 (ispell-kill-ispell t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 (message "(Next %sIspell command will use %s dictionary)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 (cond ((equal ispell-local-dictionary ispell-dictionary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 (arg "global ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 (t "local "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 (or (if (or (equal ispell-local-dictionary ispell-dictionary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 (null arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 ispell-local-dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 ispell-dictionary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 "default")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 ;;; Spelling of comments are checked when ispell-check-comments is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 (defun ispell-region (reg-start reg-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 "Interactively check a region for spelling errors."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 (interactive "r") ; Don't flag errors on read-only bufs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 (ispell-accept-buffer-local-defs) ; set up dictionary, local words, etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 (message "Spell checking %s using %s dictionary..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 (if (and (= reg-start (point-min)) (= reg-end (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 (buffer-name) "region")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 (or ispell-dictionary "default"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 ;; Returns cursor to original location.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 (goto-char reg-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 (let ((transient-mark-mode nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 ref-type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 (while (and (not ispell-quit) (< (point) reg-end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 (let ((start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 (offset-change 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 (end (save-excursion (end-of-line) (min (point) reg-end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 (ispell-casechars (ispell-get-casechars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 (cond ; LOOK AT THIS LINE AND SKIP OR PROCESS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 ((eolp) ; END OF LINE, just go to next line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 (forward-char 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 ((and (null ispell-check-comments) ; SKIPPING COMMENTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 comment-start ; skip comments that start on the line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 (search-forward comment-start end t)) ; or found here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 (if (= (- (point) start) (length comment-start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 ;; comment starts the line. Skip entire line or region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 (if (string= "" comment-end) ; skip to next line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 (beginning-of-line 2) ; or jump to comment end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 (search-forward comment-end reg-end 'limit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 ;; Comment later in line. Check spelling before comment.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 (let ((limit (- (point) (length comment-start))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 (goto-char (1- limit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 (if (looking-at "\\\\") ; "quoted" comment, don't skip
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 ;; quoted comment. Skip over comment-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 (if (= start (1- limit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 (setq limit (+ limit (length comment-start)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 (setq limit (1- limit))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 ;; Only check when "casechars" or math before comment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 (if (or (re-search-forward ispell-casechars limit t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 (re-search-forward "[][()$]" limit t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 (setq string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 (concat "^" (buffer-substring start limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 offset-change (- offset-change ispell-offset)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 (goto-char limit))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 ((looking-at "[---#@*+!%~^]") ; SKIP SPECIAL ISPELL CHARACTERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 (forward-char 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 ((or (and ispell-skip-tib ; SKIP TIB REFERENCES OR SGML MARKUP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 (re-search-forward ispell-tib-ref-beginning end t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 (setq ref-type 'tib))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 (and ispell-skip-sgml
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1774 (re-search-forward "[<&]" end t)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 (setq ref-type 'sgml)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 (if (or (and (eq 'tib ref-type) ; tib tag is 2 chars.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 (= (- (point) 2) start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 (and (eq 'sgml ref-type) ; sgml skips 1 char.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 (= (- (point) 1) start)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 ;; Skip to end of reference, not necessarily on this line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 ;; Return an error if tib/sgml reference not found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 (if (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 (eq 'tib ref-type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 (not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 (re-search-forward ispell-tib-ref-end reg-end t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 (and (eq 'sgml ref-type)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1788 (not (re-search-forward "[>;]" reg-end t))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 (ispell-pdict-save ispell-silently-savep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 (ding)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 (message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 "Open tib or SGML command. Fix buffer or set "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 (if (eq 'tib ref-type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 "ispell-skip-tib"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 "ispell-skip-sgml")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 " to nil"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 ;; keep cursor at error location
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 (setq ispell-quit (- (point) 2))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 ;; Check spelling between reference and start of the line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 (let ((limit (- (point) (if (eq 'tib ref-type) 2 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 (if (or (re-search-forward ispell-casechars limit t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 (re-search-forward "[][()$]" limit t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 (setq string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 (concat "^" (buffer-substring start limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 offset-change (- offset-change ispell-offset)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 (goto-char limit))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 ((or (re-search-forward ispell-casechars end t) ; TEXT EXISTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 (re-search-forward "[][()$]" end t)) ; or MATH COMMANDS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 (setq string (concat "^" (buffer-substring start end) "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 offset-change (- offset-change ispell-offset))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 (goto-char end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 (t (beginning-of-line 2))) ; EMPTY LINE, skip it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 (setq end (point)) ; "end" tracks end of region to check.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 (if string ; there is something to spell!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 (let (poss)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 ;; send string to spell process and get input.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 (process-send-string ispell-process string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 (while (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 (accept-process-output ispell-process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 ;; Last item of output contains a blank line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 (not (string= "" (car ispell-filter)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 ;; parse all inputs from the stream one word at a time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 ;; Place in FIFO order and remove the blank item.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 (setq ispell-filter (nreverse (cdr ispell-filter)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 (while (and (not ispell-quit) ispell-filter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 (setq poss (ispell-parse-output (car ispell-filter)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 (if (listp poss) ; spelling error occurred.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 (let* ((word-start (+ start offset-change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 (car (cdr poss))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 (word-end (+ word-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 (length (car poss))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 (goto-char word-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 ;; Adjust the horizontal scroll & point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 (ispell-horiz-scroll)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 (goto-char word-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 (ispell-horiz-scroll)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 (goto-char word-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 (ispell-horiz-scroll)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 (if (/= word-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 (search-forward (car poss) word-end t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 ;; This occurs due to filter pipe problems
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 (error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 (concat "Ispell misalignment: word "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 "`%s' point %d; please retry")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 (car poss) word-start))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1855 (if (not (pos-visible-in-window-p))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1856 (sit-for 0))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 (if ispell-keep-choices-win
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 (setq replace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 (ispell-command-loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 (car (cdr (cdr poss)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 (car (cdr (cdr (cdr poss))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 (car poss) word-start word-end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 (setq replace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 (ispell-command-loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 (car (cdr (cdr poss)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 (car (cdr (cdr (cdr poss))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 (car poss) word-start word-end))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 ((and replace (listp replace))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 ;; REPLACEMENT WORD entered. Recheck line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 ;; starting with the replacement word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 (setq ispell-filter nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 string (buffer-substring word-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 word-end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 (let ((change (- (length (car replace))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 (length (car poss)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 ;; adjust regions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 (setq reg-end (+ reg-end change)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 offset-change (+ offset-change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 change)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 (if (not (equal (car replace) (car poss)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 (delete-region word-start word-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 (insert (car replace))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 ;; I only need to recheck typed-in replacements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 (if (not (eq 'query-replace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 (car (cdr replace))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 (backward-char (length (car replace))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 (setq end (point)) ; reposition for recheck
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 ;; when second arg exists, query-replace, saving regions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 (if (car (cdr replace))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 (set-marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 ispell-query-replace-marker reg-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 ;; Assume case-replace &
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 ;; case-fold-search correct?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 (query-replace string (car replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 (setq reg-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 (marker-position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 ispell-query-replace-marker))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 (set-marker ispell-query-replace-marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 ((or (null replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 (equal 0 replace)) ; ACCEPT/INSERT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 (if (equal 0 replace) ; BUFFER-LOCAL DICT ADD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 (setq reg-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 (ispell-add-per-file-word-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 (car poss) reg-end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 ;; This avoids pointing out the word that was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 ;; just accepted (via 'i' or 'a') if it follows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 ;; on the same line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 ;; Redo check following the accepted word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 (if (and ispell-pdict-modified-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 (listp ispell-pdict-modified-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 ;; Word accepted. Recheck line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 (setq ispell-pdict-modified-p ; update flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 (car ispell-pdict-modified-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 ispell-filter nil ; discontinue check
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 end word-start))) ; reposition loc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 (replace ; STRING REPLACEMENT for this word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 (delete-region word-start word-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 (insert replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 (let ((change (- (length replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 (length (car poss)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 (setq reg-end (+ reg-end change)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 offset-change (+ offset-change change)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 end (+ end change)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 (if (not ispell-quit)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1932 (message "Continuing spelling check using %s dictionary..."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1933 (or ispell-dictionary "default")))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 (sit-for 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 ;; finished with line!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 (setq ispell-filter (cdr ispell-filter)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 (goto-char end)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 (not ispell-quit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 ;; protected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 (if (get-buffer ispell-choices-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 (kill-buffer ispell-choices-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 (if ispell-quit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 ;; preserve or clear the region for ispell-continue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 (if (not (numberp ispell-quit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 (set-marker ispell-region-end nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 ;; Enable ispell-continue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 (set-marker ispell-region-end reg-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 (goto-char ispell-quit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 ;; Check for aborting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 (if (and ispell-checking-message (numberp ispell-quit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 (setq ispell-quit nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 (error "Message send aborted.")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 (setq ispell-quit nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 (set-marker ispell-region-end nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 ;; Only save if successful exit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 (ispell-pdict-save ispell-silently-savep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 (message "Spell-checking done"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 (defun ispell-buffer ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 "Check the current buffer for spelling errors interactively."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 (ispell-region (point-min) (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 (defun ispell-continue ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 "Continue a spelling session after making some changes."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 (if (not (marker-position ispell-region-end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 (message "No session to continue. Use 'X' command when checking!")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 (if (not (equal (marker-buffer ispell-region-end) (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 (message "Must continue ispell from buffer %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 (buffer-name (marker-buffer ispell-region-end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 (ispell-region (point) (marker-position ispell-region-end)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 ;;; Horizontal scrolling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 (defun ispell-horiz-scroll ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 "Places point within the horizontal visibility of its window area."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 (if truncate-lines ; display truncating lines?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 ;; See if display needs to be scrolled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 (let ((column (- (current-column) (max (window-hscroll) 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 (if (and (< column 0) (> (window-hscroll) 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 (scroll-right (max (- column) 10))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 (if (>= column (- (window-width) 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 (scroll-left (max (- column (window-width) -3) 10)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 ;;; Interactive word completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 ;;; Forces "previous-word" processing. Do we want to make this selectable?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 (defun ispell-complete-word (&optional interior-frag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 "Look up word before or under point in dictionary (see lookup-words command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 and try to complete it. If optional INTERIOR-FRAG is non-nil then the word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 may be a character sequence inside of a word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 Standard ispell choices are then available."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 (let ((cursor-location (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 case-fold-search
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 (word (ispell-get-word nil "\\*")) ; force "previous-word" processing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 start end possibilities replacement)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 (setq start (car (cdr word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 end (car (cdr (cdr word)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 word (car word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 possibilities
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 (or (string= word "") ; Will give you every word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 (lookup-words (concat (if interior-frag "*") word "*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 ispell-complete-word-dict)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 (cond ((eq possibilities t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 (message "No word to complete"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 ((null possibilities)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 (message "No match for \"%s\"" word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 (t ; There is a modification...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 (cond ; Try and respect case of word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 ((string-match "^[^A-Z]+$" word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 (setq possibilities (mapcar 'downcase possibilities)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 ((string-match "^[^a-z]+$" word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 (setq possibilities (mapcar 'upcase possibilities)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 ((string-match "^[A-Z]" word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 (setq possibilities (mapcar 'capitalize possibilities))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 (setq replacement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 (ispell-command-loop possibilities nil word start end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 ((equal 0 replacement) ; BUFFER-LOCAL ADDITION
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 (ispell-add-per-file-word-list word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 (replacement ; REPLACEMENT WORD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 (delete-region start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 (setq word (if (atom replacement) replacement (car replacement))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 cursor-location (+ (- (length word) (- end start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 cursor-location))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 (insert word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 (if (not (atom replacement)) ; recheck spelling of replacement.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 (goto-char cursor-location)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 (ispell-word nil t)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 (if (get-buffer ispell-choices-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 (kill-buffer ispell-choices-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 (ispell-pdict-save ispell-silently-savep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 (goto-char cursor-location)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 (defun ispell-complete-word-interior-frag ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 "Completes word matching character sequence inside a word."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 (ispell-complete-word t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 ;;; Ispell Minor Mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 (defvar ispell-minor-mode nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 "Non-nil if Ispell minor mode is enabled.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 ;; Variable indicating that ispell minor mode is active.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 (make-variable-buffer-local 'ispell-minor-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 (or (assq 'ispell-minor-mode minor-mode-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 (setq minor-mode-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 (cons '(ispell-minor-mode " Spell") minor-mode-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 (defvar ispell-minor-keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 (let ((map (make-sparse-keymap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 (define-key map " " 'ispell-minor-check)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 (define-key map "\r" 'ispell-minor-check)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 "Keymap used for Ispell minor mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 (or (not (boundp 'minor-mode-map-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 (assoc 'ispell-minor-mode minor-mode-map-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 (setq minor-mode-map-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 (cons (cons 'ispell-minor-mode ispell-minor-keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 minor-mode-map-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 (defun ispell-minor-mode (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 "Toggle Ispell minor mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 With prefix arg, turn Ispell minor mode on iff arg is positive.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 In Ispell minor mode, pressing SPC or RET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 warns you if the previous word is incorrectly spelled."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 (setq ispell-minor-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 (not (or (and (null arg) ispell-minor-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 (<= (prefix-numeric-value arg) 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 (redraw-modeline))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 (defun ispell-minor-check ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 ;; Check previous word then continue with the normal binding of this key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 (interactive "*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 (let ((ispell-minor-mode nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 (ispell-check-only t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 (narrow-to-region (point-min) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 (ispell-word nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 (call-interactively (key-binding (this-command-keys)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 ;;; Ispell Message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 ;;; Original from D. Quinlan, E. Bradford, A. Albert, and M. Ernst
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 (defvar ispell-message-text-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 (mapconcat (function identity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 ;; Matches postscript files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 "^%!PS-Adobe-[123].0"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 ;; Matches uuencoded text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 "^begin [0-9][0-9][0-9] .*\nM.*\nM.*\nM"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 ;; Matches shell files (esp. auto-decoding)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 "^#! /bin/[ck]?sh"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 ;; Matches context difference listing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 "\\(diff -c .*\\)?\n\\*\\*\\* .*\n--- .*\n\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*"
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2124 ;; Matches reporter.el bug report
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2125 "^current state:\n==============\n"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 ;; Matches "----------------- cut here"
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2127 ;; and "------- Start of forwarded message"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2128 "^[-=_]+\\s ?\\(cut here\\|Start of forwarded message\\)")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 "\\|")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 "*End of text which will be checked in ispell-message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 If it is a string, limit at first occurrence of that regular expression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 Otherwise, it must be a function which is called to get the limit.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 (defvar ispell-message-start-skip
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 (mapconcat (function identity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 ;; Matches forwarded messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 "^---* Forwarded Message"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 ;; Matches PGP Public Key block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 "^---*BEGIN PGP [A-Z ]*--*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 "\\|")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 "Spelling is skipped inside these start/end groups by ispell-message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 Assumed that blocks are not mutually inclusive.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 (defvar ispell-message-end-skip
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 (mapconcat (function identity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 ;; Matches forwarded messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 "^--- End of Forwarded Message"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 ;; Matches PGP Public Key block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 "^---*END PGP [A-Z ]*--*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 "\\|")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 "Spelling is skipped inside these start/end groups by ispell-message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 Assumed that blocks are not mutually inclusive.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 (defun ispell-message ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 "Check the spelling of a mail message or news post.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 Don't check spelling of message headers except the Subject field.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 Don't check included messages.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2167 To abort spell checking of a message region and send the message anyway,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 use the `x' or `q' command. (Any subsequent regions will be checked.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 The `X' command aborts the message send so that you can edit the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 To spell-check whenever a message is sent, include the appropriate lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 in your .emacs file:
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2173 (add-hook 'message-send-hook 'ispell-message)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 (add-hook 'mail-send-hook 'ispell-message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 (add-hook 'mh-before-send-letter-hook 'ispell-message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 You can bind this to the key C-c i in GNUS or mail by adding to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 `news-reply-mode-hook' or `mail-mode-hook' the following lambda expression:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 (let* ((internal-messagep (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 (concat "^"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 (regexp-quote mail-header-separator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 "$")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 nil t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 (limit (copy-marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 ((not ispell-message-text-end) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 ((char-or-string-p ispell-message-text-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 (if (re-search-forward ispell-message-text-end nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 (match-beginning 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 (t (min (point-max) (funcall ispell-message-text-end))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 (cite-regexp ;Prefix of inserted text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 ((featurep 'supercite) ; sc 3.0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 (concat "\\(" (sc-cite-regexp) "\\)" "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 (ispell-non-empty-string sc-reference-tag-string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 ((featurep 'sc) ; sc 2.3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 (concat "\\(" sc-cite-regexp "\\)" "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 (ispell-non-empty-string sc-reference-tag-string)))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2205 ((equal major-mode 'news-reply-mode) ;GNUS 4 & below
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 (concat "In article <" "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 (if mail-yank-prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 (ispell-non-empty-string mail-yank-prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 "^ \\|^\t")))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2210 ((equal major-mode 'message-mode) ;GNUS 5
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2211 (concat ".*@.* writes:$" "\\|"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2212 (if mail-yank-prefix
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2213 (ispell-non-empty-string mail-yank-prefix)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2214 "^ \\|^\t")))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 ((equal major-mode 'mh-letter-mode) ; mh mail message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 (ispell-non-empty-string mh-ins-buf-prefix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 ((not internal-messagep) ; Assume n sent us this message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 (concat "In [a-zA-Z.]+ you write:" "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 "In <[^,;&+=]+> [^,;&+=]+ writes:" "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 " *> *"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 ((boundp 'vm-included-text-prefix) ; VM mail message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 (concat "[^,;&+=]+ writes:" "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 (ispell-non-empty-string vm-included-text-prefix)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 (mail-yank-prefix ; vanilla mail message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 (ispell-non-empty-string mail-yank-prefix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 (t "^ \\|^\t")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 (cite-regexp-start (concat "^[ \t]*$\\|" cite-regexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 (cite-regexp-end (concat "^\\(" cite-regexp "\\)"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 (old-case-fold-search case-fold-search)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 (case-fold-search t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 (ispell-checking-message t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 ;; Skip header fields except Subject: without Re:'s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 ;;(search-forward mail-header-separator nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 (while (if internal-messagep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 (< (point) internal-messagep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 (and (looking-at "[a-zA-Z---]+:\\|\t\\| ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 (not (eobp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 (if (looking-at "Subject: *") ; Spell check new subject fields
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 (goto-char (match-end 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 (if (and (not (looking-at ".*Re\\>"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 (not (looking-at "\\[")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 (let ((case-fold-search old-case-fold-search))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 (ispell-region (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 (end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 (while (looking-at "\n[ \t]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 (end-of-line 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 (point)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 (forward-line 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 (setq case-fold-search nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 ;; Skip mail header, particularly for non-english languages.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 (if (looking-at (concat (regexp-quote mail-header-separator) "$"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 (forward-line 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 (while (< (point) limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 ;; Skip across text cited from other messages.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 (while (and (looking-at cite-regexp-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 (< (point) limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 (zerop (forward-line 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 (if (< (point) limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 (let* ((start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 ;; Check the next batch of lines that *aren't* cited.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 (end-c (and (re-search-forward cite-regexp-end limit 'end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 (match-beginning 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 ;; Skip a block of included text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 (end-fwd (and (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 (re-search-forward ispell-message-start-skip
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 limit 'end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 (progn (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 (end (or (and end-c end-fwd (min end-c end-fwd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 end-c end-fwd
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2275 ;; default to limit of text.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 (marker-position limit))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 (ispell-region start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 (if (and end-fwd (= end end-fwd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 (goto-char end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 (re-search-forward ispell-message-end-skip limit 'end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 (goto-char end)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 (set-marker limit nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 (defun ispell-non-empty-string (string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 (if (or (not string) (string-equal string ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 "\\'\\`" ; An unmatchable string if string is null.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 (regexp-quote string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 ;;; Buffer Local Functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 (defun ispell-accept-buffer-local-defs ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 "Load all buffer-local information, restarting ispell when necessary."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 (ispell-buffer-local-dict) ; May kill ispell-process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 (ispell-buffer-local-words) ; Will initialize ispell-process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 (ispell-buffer-local-parsing))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 (defun ispell-buffer-local-parsing ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 "Place Ispell into parsing mode for this buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 Overrides the default parsing mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 Includes latex/nroff modes and extended character mode."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 ;; (ispell-init-process) must already be called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 (process-send-string ispell-process "!\n") ; Put process in terse mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 ;; We assume all major modes with "tex-mode" in them should use latex parsing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 (if (or (and (eq ispell-parser 'use-mode-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 (string-match "[Tt][Ee][Xx]-mode" (symbol-name major-mode)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 (eq ispell-parser 'tex))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 (process-send-string ispell-process "+\n") ; set ispell mode to tex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 (process-send-string ispell-process "-\n")) ; set mode to normal (nroff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 ;; Hard-wire test for SGML & HTML mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 (setq ispell-skip-sgml (memq major-mode '(sgml-mode html-mode)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 ;; Set default extended character mode for given buffer, if any.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 (let ((extended-char-mode (ispell-get-extended-character-mode)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 (if extended-char-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 (process-send-string ispell-process (concat extended-char-mode "\n"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 ;; Set buffer-local parsing mode and extended character mode, if specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 ;; Uses last valid definition
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 (while (search-forward ispell-parsing-keyword nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 (let ((end (save-excursion (end-of-line) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 (case-fold-search t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 (while (re-search-forward " *\\([^ \"]+\\)" end t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 ;; space separated definitions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 (setq string (buffer-substring (match-beginning 1) (match-end 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 (cond ((string-match "latex-mode" string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 (process-send-string ispell-process "+\n~tex\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 ((string-match "nroff-mode" string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 (process-send-string ispell-process "-\n~nroff"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 ((string-match "~" string) ; Set extended character mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 (process-send-string ispell-process (concat string "\n")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 (t (message "Illegal Ispell Parsing argument!")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 (sit-for 2))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 ;;; Can kill the current ispell process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 (defun ispell-buffer-local-dict ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 "Initializes local dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 When a dictionary is defined in the buffer (see variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 `ispell-dictionary-keyword'), it will override the local setting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 from \\[ispell-change-dictionary].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 Both should not be used to define a buffer-local dictionary."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 (let (end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 ;; Override the local variable definition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 ;; Uses last valid definition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 (while (search-forward ispell-dictionary-keyword nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 (setq end (save-excursion (end-of-line) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 (if (re-search-forward " *\\([^ \"]+\\)" end t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 (setq ispell-local-dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 (buffer-substring (match-beginning 1) (match-end 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 (while (search-forward ispell-pdict-keyword nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 (setq end (save-excursion (end-of-line) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 (if (re-search-forward " *\\([^ \"]+\\)" end t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 (setq ispell-local-pdict
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 (buffer-substring (match-beginning 1) (match-end 1)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 ;; Reload if new personal dictionary defined.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 (if (and ispell-local-pdict
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 (not (equal ispell-local-pdict ispell-personal-dictionary)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 (ispell-kill-ispell t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 (setq ispell-personal-dictionary ispell-local-pdict)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 ;; Reload if new dictionary defined.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 (if (and ispell-local-dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 (not (equal ispell-local-dictionary ispell-dictionary)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 (ispell-change-dictionary ispell-local-dictionary)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 (defun ispell-buffer-local-words ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 "Loads the buffer-local dictionary in the current buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 (if (and ispell-buffer-local-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 (not (equal ispell-buffer-local-name (buffer-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 (ispell-kill-ispell t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 (setq ispell-buffer-local-name nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 (ispell-init-process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 (while (search-forward ispell-words-keyword nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 (or ispell-buffer-local-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 (setq ispell-buffer-local-name (buffer-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 (let ((end (save-excursion (end-of-line) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 ;; buffer-local words separated by a space, and can contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 ;; any character other than a space.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 (while (re-search-forward " *\\([^ ]+\\)" end t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 (setq string (buffer-substring (match-beginning 1) (match-end 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 (process-send-string ispell-process (concat "@" string "\n")))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 ;;; returns optionally adjusted region-end-point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 (defun ispell-add-per-file-word-list (word &optional reg-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 "Adds new word to the per-file word list."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 (or ispell-buffer-local-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 (setq ispell-buffer-local-name (buffer-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 (if (null reg-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 (setq reg-end 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 (let (case-fold-search line-okay search done string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 (while (not done)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 (setq search (search-forward ispell-words-keyword nil 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 line-okay (< (+ (length word) 1 ; 1 for space after word..
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 (progn (end-of-line) (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 80))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 (if (or (and search line-okay)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 (null search))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 (setq done t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 (if (null search)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 (open-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 (setq string (concat comment-start " "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 ispell-words-keyword))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 ;; in case the keyword is in the middle of the file....
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 (if (> reg-end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 (setq reg-end (+ reg-end (length string))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 (insert string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 (if (and comment-end (not (equal "" comment-end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 (open-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 (insert comment-end)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 (if (> reg-end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 (setq reg-end (+ 1 reg-end (length word))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 (insert (concat " " word)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 reg-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 (defconst ispell-version "2.37 -- Tue Jun 13 12:05:28 EDT 1995")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 (provide 'ispell)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 ;;; LOCAL VARIABLES AND BUFFER-LOCAL VALUE EXAMPLES.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 ;;; Local Variable options:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 ;;; mode: name(-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 ;;; eval: expression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 ;;; local-variable: value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 ;;; The following sets the buffer local dictionary to english!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 ;;; Local Variables:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 ;;; mode: emacs-lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 ;;; comment-column: 40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 ;;; ispell-local-dictionary: "english"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 ;;; End:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 ;;; MORE EXAMPLES OF ISPELL BUFFER-LOCAL VALUES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 ;;; The following places this file in nroff parsing and extended char modes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 ;;; Local IspellParsing: nroff-mode ~nroff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 ;;; Change IspellDict to IspellDict: to enable the following line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 ;;; Local IspellDict english
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 ;;; Change IspellPersDict to IspellPersDict: to enable the following line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 ;;; Local IspellPersDict ~/.ispell_lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 ;;; The following were automatically generated by ispell using the 'A' command:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 ; LocalWords: ispell ispell-highlight-p ispell-check-comments query-replace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 ; LocalWords: ispell-query-replace-choices ispell-skip-tib non-nil tib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 ; LocalWords: regexps ispell-tib-ref-beginning ispell-tib-ref-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476 ;; ispell.el ends here