annotate lisp/packages/ispell.el @ 120:cca96a509cfe r20-1b12

Import from CVS: tag r20-1b12
author cvs
date Mon, 13 Aug 2007 09:25:29 +0200
parents 4be1180a9e89
children 9b50b4588a93
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?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 ("francais7"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 "[A-Za-z]" "[^A-Za-z]" "[`'^---]" t nil nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 ("francais" ; francais.aff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 "[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
525 "[^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
526 "[---']" t nil "~list")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 ("francais-tex" ; francais.aff
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 "[^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
530 "[---'^`\"]" t nil "~tex")
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
531 ("italiano" ; italiano.aff
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 100
diff changeset
532 "[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
533 "[^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
534 "[']" t ("-d" "italiano") "~list")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 ("dansk" ; dansk.aff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 "[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
537 "" nil ("-C") nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 ;;; ispell-dictionary-alist is set up from two subvariables above
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 ;;; to avoid having very long lines in loaddefs.el.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (defvar ispell-dictionary-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 (append ispell-dictionary-alist-1 ispell-dictionary-alist-2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 "An alist of dictionaries and their associated parameters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 Each element of this list is also a list:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 \(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 ISPELL-ARGS EXTENDED-CHARACTER-MODE\)
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 is a possible value of variable `ispell-dictionary', nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 means the default dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 CASECHARS is a regular expression of valid characters that comprise a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 NOT-CASECHARS is the opposite regexp of CASECHARS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 OTHERCHARS is a regular expression of other characters that are valid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 in word constructs. Otherchars cannot be adjacent to each other in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 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
564 \"Stevens'\" as a correct possessive and other correct formations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 Hint: regexp syntax requires the hyphen to be declared first here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 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
569 word instead of only one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 ISPELL-ARGS is a list of additional arguments passed to the ispell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 subprocess.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 EXTENDED-CHARACTER-MODE should be used when dictionaries are used which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 have been configured in an Ispell affix file. (For example, umlauts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 can be encoded as \\\"a, a\\\", \"a, ...) Defaults are ~tex and ~nroff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 in English. This has the same effect as the command-line `-T' option.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 The buffer Major Mode controls Ispell's parsing in tex or nroff mode,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 but the dictionary can control the extended character mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 Both defaults can be overruled in a buffer-local fashion. See
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 `ispell-parsing-keyword' for details on this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 Note that the CASECHARS and OTHERCHARS slots of the alist should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 contain the same character set as casechars and otherchars in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 language.aff file \(e.g., english.aff\).")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 (defvar ispell-menu-map nil "Key map for ispell menu")
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
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
591 (defvar ispell-menu-xemacs nil "Spelling menu for XEmacs.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
593 ;;; Break out XEmacs menu and split into several calls to avoid having
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 ;;; long lines in loaddefs.el. Detect need off following constant.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 ;;;###autoload
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
597 (defconst ispell-menu-map-needed ; make sure this is not XEmacs
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 (and (not ispell-menu-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 (string-lessp "19" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 ;; make sure this isn't XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 (not (string-match "XEmacs" emacs-version))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
604 ;;; Set up dictionary
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 (if ispell-menu-map-needed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 (let ((dicts (reverse (cons (cons "default" nil) ispell-dictionary-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 (setq ispell-menu-map (make-sparse-keymap "Spell"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 ;; add the dictionaries to the bottom of the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 (while dicts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 (setq name (car (car dicts))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 dicts (cdr dicts))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 (if (stringp name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 (define-key ispell-menu-map (vector (intern name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 (cons (concat "Select " (capitalize name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 (list 'lambda () '(interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 (list 'ispell-change-dictionary name))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 ;;; define commands in menu in opposite order you want them to appear.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 (if ispell-menu-map-needed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 (define-key ispell-menu-map [ispell-change-dictionary]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 '("Change Dictionary" . ispell-change-dictionary))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 (define-key ispell-menu-map [ispell-kill-ispell]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 '("Kill Process" . ispell-kill-ispell))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 (define-key ispell-menu-map [ispell-pdict-save]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 '("Save Dictionary" . (lambda () (interactive) (ispell-pdict-save t t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 (define-key ispell-menu-map [ispell-complete-word]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 '("Complete Word" . ispell-complete-word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 (define-key ispell-menu-map [ispell-complete-word-interior-frag]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 '("Complete Word Frag" . ispell-complete-word-interior-frag))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 (if ispell-menu-map-needed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 (define-key ispell-menu-map [ispell-continue]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 '("Continue Check" . ispell-continue))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 (define-key ispell-menu-map [ispell-word]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 '("Check Word" . ispell-word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 (define-key ispell-menu-map [ispell-region]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 '("Check Region" . ispell-region))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 (define-key ispell-menu-map [ispell-buffer]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 '("Check Buffer" . ispell-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 (if ispell-menu-map-needed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 (define-key ispell-menu-map [ispell-message]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 '("Check Message" . ispell-message))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 (define-key ispell-menu-map [ispell-help]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 ;; use (x-popup-menu last-nonmenu-event(list "" ispell-help-list)) ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 '("Help" . (lambda () (interactive) (describe-function 'ispell-help))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 (put 'ispell-region 'menu-enable 'mark-active)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 (fset 'ispell-menu-map (symbol-value 'ispell-menu-map))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 ;;; XEmacs version 19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 (if (and (string-lessp "19" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 (string-match "Lucid" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 (not (and (boundp 'infodock-version) infodock-version)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 (let ((dicts (cons (cons "default" nil) ispell-dictionary-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 (current-menubar (or current-menubar default-menubar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 (menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 '(["Help" (describe-function 'ispell-help) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 ;;["Help" (popup-menu ispell-help-list) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 ["Check Message" ispell-message t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 ["Check Buffer" ispell-buffer t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 ["Check Word" ispell-word t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 ["Check Region" ispell-region (or (not zmacs-regions) (mark))]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 ["Continue Check" ispell-continue t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 ["Complete Word Frag"ispell-complete-word-interior-frag t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 ["Complete Word" ispell-complete-word t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 ["Kill Process" ispell-kill-ispell t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 "-"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 ["Save Dictionary" (ispell-pdict-save t t) t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 ["Change Dictionary" ispell-change-dictionary t]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 (while dicts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 (setq name (car (car dicts))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 dicts (cdr dicts))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 (if (stringp name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 (setq menu (append menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 (vector (concat "Select " (capitalize name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 (list 'ispell-change-dictionary name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 t))))))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
688 (setq ispell-menu-xemacs menu)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 (if current-menubar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 (delete-menu-item '("Edit" "Spell")) ; in case already defined
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
692 (add-menu '("Edit") "Spell" ispell-menu-xemacs)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 ;;; The following are used by ispell, and should not be changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 ;;; **********************************************************************
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 ;;; 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
701 ;;; There is an incompatibility between version 3.1.12 and lower versions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 (defconst ispell-required-version '("3.1." 12)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 "Ispell versions with which this version of ispell.el is known to work.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 (defvar ispell-offset 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 "Offset that maps protocol differences between ispell 3.1 versions.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 (defun ispell-get-casechars ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 (nth 1 (assoc ispell-dictionary ispell-dictionary-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 (defun ispell-get-not-casechars ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 (nth 2 (assoc ispell-dictionary ispell-dictionary-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 (defun ispell-get-otherchars ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 (nth 3 (assoc ispell-dictionary ispell-dictionary-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 (defun ispell-get-many-otherchars-p ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 (nth 4 (assoc ispell-dictionary ispell-dictionary-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (defun ispell-get-ispell-args ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 (nth 5 (assoc ispell-dictionary ispell-dictionary-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 (defun ispell-get-extended-character-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 (nth 6 (assoc ispell-dictionary ispell-dictionary-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 (defvar ispell-process nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 "The process object for Ispell.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 (defvar ispell-pdict-modified-p nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 "Non-nil means personal dictionary has modifications to be saved.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 ;;; If you want to save the dictionary when quitting, must do so explicitly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 ;;; When non-nil, the spell session is terminated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 ;;; When numeric, contains cursor location in buffer, and cursor remains there.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 (defvar ispell-quit nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 (defvar ispell-filter nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 "Output filter from piped calls to Ispell.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 (defvar ispell-filter-continue nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 "Control variable for Ispell filter function.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 (defvar ispell-process-directory nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 "The directory where `ispell-process' was started.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 (defvar ispell-query-replace-marker (make-marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 "Marker for `query-replace' processing.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 (defvar ispell-checking-message nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 "Non-nil when we're checking a mail message")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 (defconst ispell-choices-buffer "*Choices*")
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-overlay nil "Overlay variable for Ispell highlighting.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 ;;; *** Buffer Local Definitions ***
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 ;;; This is the local dictionary to use. When nil the default dictionary will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 ;;; be used. Do not redefine default value or it will override the global!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 (defvar ispell-local-dictionary nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 "If non-nil, a dictionary to use for Ispell commands in this buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 The value must be a string dictionary name in `ispell-dictionary-alist'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 This variable becomes buffer-local when set in any fashion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 Setting ispell-local-dictionary to a value has the same effect as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 calling \\[ispell-change-dictionary] with that value. This variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 is automatically set when defined in the file with either
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 `ispell-dictionary-keyword' or the Local Variable syntax.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 (make-variable-buffer-local 'ispell-local-dictionary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 ;; Use default directory, unless locally set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 (set-default 'ispell-local-dictionary nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 (defconst ispell-words-keyword "LocalWords: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 "The keyword for local oddly-spelled words to accept.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 The keyword will be followed by any number of local word spellings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 There can be multiple of these keywords in the file.")
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-dictionary-keyword "Local IspellDict: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 "The keyword for local dictionary definitions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 There should be only one dictionary keyword definition per file, and it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 should be followed by a correct dictionary name in `ispell-dictionary-alist'.")
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-parsing-keyword "Local IspellParsing: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 "The keyword for overriding default Ispell parsing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 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
782 the default dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 The above keyword string should be followed by `latex-mode' or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 `nroff-mode' to put the current buffer into the desired parsing mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 Extended character mode can be changed for this buffer by placing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 a `~' followed by an extended-character mode -- such as `~.tex'.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 (defvar ispell-skip-sgml nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 "Skips spell checking of SGML tags and entity references when non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 This variable is set when major-mode is sgml-mode or html-mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 (defvar ispell-local-pdict ispell-personal-dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 "A buffer local variable containing the current personal dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 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
798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 If you specify a personal dictionary for the current buffer which is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 different from the current personal dictionary, the effect is similar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 to calling \\[ispell-change-dictionary]. This variable is automatically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 set when defined in the file with either `ispell-pdict-keyword' or the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 local variable syntax.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 (make-variable-buffer-local 'ispell-local-pdict)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 (defconst ispell-pdict-keyword "Local IspellPersDict: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 "The keyword for defining buffer local dictionaries.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 (defvar ispell-buffer-local-name nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 "Contains the buffer name if local word definitions were used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 Ispell is then restarted because the local words could conflict.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 (defvar ispell-parser 'use-mode-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 "*Indicates whether ispell should parse the current buffer as TeX Code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 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
817 Default parser is 'nroff.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 Currently the only other valid parser is 'tex.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 You can set this variable in hooks in your init file -- eg:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 (add-hook 'tex-mode-hook (function (lambda () (setq ispell-parser 'tex))))")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 (defvar ispell-region-end (make-marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 "Marker that allows spelling continuations.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 (defvar ispell-check-only nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 "If non-nil, `ispell-word' does not try to correct the word.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 (and (string-lessp "19" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 (not (boundp 'epoch::version))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 (defalias 'ispell 'ispell-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
839
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
840 ;; XEmacs: \M-$ for whatever reason, drives `make autoloads' bonkers
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
841
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 ;;;###autoload
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
843 (define-key global-map [(meta ?\$)] 'ispell-word)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 (defun ispell-word (&optional following quietly continue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 "Check spelling of word under or before the cursor.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 If the word is not found in dictionary, display possible corrections
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 in a window allowing you to choose one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 With a prefix argument (or if CONTINUE is non-nil),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 resume interrupted spell-checking of a buffer or region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 If optional argument FOLLOWING is non-nil or if `ispell-following-word'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 is non-nil when called interactively, then the following word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 \(rather than preceding\) is checked when the cursor is not over a word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 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
858 when called interactively, non-corrective messages are suppressed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 Word syntax described by `ispell-dictionary-alist' (which see).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 This will check or reload the dictionary. Use \\[ispell-change-dictionary]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 or \\[ispell-region] to update the Ispell process."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 (interactive (list nil nil current-prefix-arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 (if continue
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 (ispell-continue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 (if (interactive-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 (setq following ispell-following-word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 quietly ispell-quietly))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 (ispell-accept-buffer-local-defs) ; use the correct dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 (let ((cursor-location (point)) ; retain cursor location
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 (word (ispell-get-word following))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 start end poss replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 ;; destructure return word info list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 (setq start (car (cdr word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 end (car (cdr (cdr word)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 word (car word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 ;; now check spelling of word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 (or quietly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 (message "Checking spelling of %s..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 (funcall ispell-format-word word)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 (process-send-string ispell-process "%\n") ;put in verbose mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 (process-send-string ispell-process (concat "^" word "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 ;; wait until ispell has processed word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 (while (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 (accept-process-output ispell-process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 (not (string= "" (car ispell-filter)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 ;;(process-send-string ispell-process "!\n") ;back to terse mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 (setq ispell-filter (cdr ispell-filter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 (if (listp ispell-filter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 (setq poss (ispell-parse-output (car ispell-filter))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 (cond ((eq poss t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 (or quietly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 (message "%s is correct" (funcall ispell-format-word word))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 ((stringp poss)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 (or quietly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 (message "%s is correct because of root %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 (funcall ispell-format-word word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 (funcall ispell-format-word poss))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 ((null poss) (message "Error in ispell process"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 (ispell-check-only ; called from ispell minor mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 (beep))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 (t ; prompt for correct word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 (setq replace (ispell-command-loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 (car (cdr (cdr poss)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 (car (cdr (cdr (cdr poss))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 (car poss) start end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 (cond ((equal 0 replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 (ispell-add-per-file-word-list (car poss)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 (replace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 (setq word (if (atom replace) replace (car replace))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 cursor-location (+ (- (length word) (- end start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 cursor-location))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 (if (not (equal word (car poss)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 (delete-region start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 (insert word)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 (if (not (atom replace)) ; recheck spelling of replacement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 (goto-char cursor-location)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 (ispell-word following quietly)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 (if (get-buffer ispell-choices-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 (kill-buffer ispell-choices-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 (goto-char cursor-location) ; return to original location
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 (ispell-pdict-save ispell-silently-savep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 (if ispell-quit (setq ispell-quit nil)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 (defun ispell-get-word (following &optional extra-otherchars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 "Return the word for spell-checking according to ispell syntax.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 If optional argument FOLLOWING is non-nil or if `ispell-following-word'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 is non-nil when called interactively, then the following word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 \(rather than preceding\) is checked when the cursor is not over a word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 Optional second argument contains otherchars that can be included in word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 many times.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 Word syntax described by `ispell-dictionary-alist' (which see)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 (let* ((ispell-casechars (ispell-get-casechars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 (ispell-not-casechars (ispell-get-not-casechars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 (ispell-otherchars (ispell-get-otherchars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 (ispell-many-otherchars-p (ispell-get-many-otherchars-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 (word-regexp (concat ispell-casechars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 "+\\("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 ispell-otherchars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 "?"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 (if extra-otherchars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 (concat extra-otherchars "?"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 ispell-casechars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 "+\\)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 (if (or ispell-many-otherchars-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 extra-otherchars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 "*" "?")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 did-it-once
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 start end word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 ;; find the word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 (if (not (looking-at ispell-casechars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 (if following
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 (re-search-forward ispell-casechars (point-max) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 (re-search-backward ispell-casechars (point-min) t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 ;; move to front of word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 (re-search-backward ispell-not-casechars (point-min) 'start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 (while (and (or (looking-at ispell-otherchars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 (and extra-otherchars (looking-at extra-otherchars)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 (not (bobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 (or (not did-it-once)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 ispell-many-otherchars-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 (if (and extra-otherchars (looking-at extra-otherchars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 (backward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 (if (looking-at ispell-casechars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 (re-search-backward ispell-not-casechars (point-min) 'move)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 (setq did-it-once t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 (backward-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 (if (looking-at ispell-casechars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 (re-search-backward ispell-not-casechars (point-min) 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 (backward-char -1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 ;; Now mark the word and save to string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 (or (re-search-forward word-regexp (point-max) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 (error "No word found to check!"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 (setq start (match-beginning 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 end (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 word (buffer-substring start end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 (list word start end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 ;;; Global ispell-pdict-modified-p is set by ispell-command-loop and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 ;;; tracks changes in the dictionary. The global may either be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 ;;; a value or a list, whose value is the state of whether the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 ;;; dictionary needs to be saved.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 (defun ispell-pdict-save (&optional no-query force-save)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 "Check to see if the personal dictionary has been modified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 If so, ask if it needs to be saved."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 (interactive (list ispell-silently-savep t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 (if (and ispell-pdict-modified-p (listp ispell-pdict-modified-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 (setq ispell-pdict-modified-p (car ispell-pdict-modified-p)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 (if (or ispell-pdict-modified-p force-save)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 (if (or no-query (y-or-n-p "Personal dictionary modified. Save? "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 (process-send-string ispell-process "#\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 (message "Personal dictionary saved."))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 ;; unassert variable, even if not saved to avoid questioning.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 (setq ispell-pdict-modified-p nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 (defun ispell-command-loop (miss guess word start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 "Display possible corrections from list MISS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 GUESS lists possibly valid affix construction of WORD.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 Returns nil to keep word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 Returns 0 to insert locally into buffer-local dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 Returns string for new chosen word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 Returns list for new replacement word (will be rechecked).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 Highlights the word, which is assumed to run from START to END.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 Global `ispell-pdict-modified-p' becomes a list where the only value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 indicates whether the dictionary has been modified when option `a' or `i' is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 used."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 (let ((textbuf (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 (count ?0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 (line 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 (max-lines (- (window-height) 4)) ; assure 4 context lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 (choices miss)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 (window-min-height (min window-min-height
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 ispell-choices-win-default-height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 (command-characters '( ? ?i ?a ?A ?r ?R ?? ?x ?X ?q ?l ?u ?m ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 (skipped 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 char num result textwin highlighted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 ;; setup the *Choices* buffer with valid data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 (set-buffer (get-buffer-create ispell-choices-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 (setq mode-line-format (concat "-- %b -- word: " word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 ;; XEmacs: turn off the modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 (and (fboundp 'set-specifier)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 (set-specifier has-modeline-p (cons (current-buffer) nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 (if guess
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 (insert "Affix rules generate and capitalize "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 "this word as shown below:\n\t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 (while guess
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 (if (> (+ 4 (current-column) (length (car guess)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 (window-width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 (insert "\n\t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 (setq line (1+ line))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 (insert (car guess) " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 (setq guess (cdr guess)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 (insert "\nUse option `i' if this is a correct composition"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 " from the derivative root.\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 (setq line (+ line (if choices 3 2)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 (while (and choices
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 (< (if (> (+ 7 (current-column) (length (car choices))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 (if (> count ?~) 3 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 (window-width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 (insert "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 (setq line (1+ line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 max-lines))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 ;; 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
1063 ;; there are that many you don't want to scan them all anyway...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 (while (memq count command-characters) ; skip command characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 (setq count (1+ count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 skipped (1+ skipped)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 (insert "(" count ") " (car choices) " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 (setq choices (cdr choices)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 count (1+ count)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 (setq count (- count ?0 skipped)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 ;; Assure word is visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 (if (not (pos-visible-in-window-p end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 (sit-for 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 ;; Display choices for misspelled word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 (let ((choices-window (get-buffer-window ispell-choices-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 (if choices-window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 (if (= line (window-height choices-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 (select-window choices-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 ;; *Choices* window changed size. Adjust the choices window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 ;; without scrolling the spelled window when possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 (let ((window-line (- line (window-height choices-window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 (visible (progn (forward-line -1) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 (if (< line ispell-choices-win-default-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 (setq window-line (+ window-line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 (- ispell-choices-win-default-height
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 line))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 (move-to-window-line 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 (forward-line window-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 (set-window-start (selected-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 (if (> (point) visible) visible (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 (goto-char end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 (select-window (previous-window)) ; *Choices* window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 (enlarge-window window-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 ;; Overlay *Choices* window when it isn't showing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 (ispell-overlay-window (max line ispell-choices-win-default-height)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 (switch-to-buffer ispell-choices-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 (goto-char (point-min)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 (select-window (setq textwin (next-window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 ;; highlight word, protecting current buffer status
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 (if ispell-highlight-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 (ispell-highlight-spelling-error start end t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 ;; Loop until a valid choice is made.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 (while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 (eq
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 (setq
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 result
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 (undo-boundary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 (message (concat "C-h or ? for more options; SPC to leave "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 "unchanged, Character to replace word"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 (let ((inhibit-quit t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 (setq char (if (fboundp 'read-char-exclusive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 (read-char-exclusive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 (read-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 skipped 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 (if (or quit-flag (= char ?\C-g)) ; C-g is like typing X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 (setq char ?X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 quit-flag nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 ;; Adjust num to array offset skipping command characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 (let ((com-chars command-characters))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 (while com-chars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 (if (and (> (car com-chars) ?0) (< (car com-chars) char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 (setq skipped (1+ skipped)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 (setq com-chars (cdr com-chars)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 (setq num (- char ?0 skipped)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 ((= char ? ) nil) ; accept word this time only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 ((= char ?i) ; accept and insert word into pers dict
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 (process-send-string ispell-process (concat "*" word "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 (setq ispell-pdict-modified-p '(t)) ; dictionary modified!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 ((or (= char ?a) (= char ?A)) ; accept word without insert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 (process-send-string ispell-process (concat "@" word "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 (if (null ispell-pdict-modified-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 (setq ispell-pdict-modified-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 (list ispell-pdict-modified-p)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 (if (= char ?A) 0)) ; return 0 for ispell-add buffer-local
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 ((or (= char ?r) (= char ?R)) ; type in replacement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 (if (or (= char ?R) ispell-query-replace-choices)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 (list (read-string "Query-replacement for: " word) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 (cons (read-string "Replacement for: " word) nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 ((or (= char ??)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 ;; XEmacs change: help-char may not be an int.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 (eq char (event-to-character
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 (character-to-event help-char)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 (= char ?\C-h))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 (ispell-help)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 ;; Quit and move point back.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 ((= char ?x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 (ispell-pdict-save ispell-silently-savep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 (message "Exited spell-checking")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 (setq ispell-quit t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 ;; Quit and preserve point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 ((= char ?X)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 (ispell-pdict-save ispell-silently-savep)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1165 (message "%s"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 (substitute-command-keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 (concat "Spell-checking suspended;"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 " use C-u \\[ispell-word] to resume")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 (setq ispell-quit (max (point-min)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 (- (point) (length word))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 ((= char ?q)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 (if (y-or-n-p "Really kill Ispell process? ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 (ispell-kill-ispell t) ; terminate process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 (setq ispell-quit (or (not ispell-checking-message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 ispell-pdict-modified-p nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 t)) ; continue if they don't quit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 ((= char ?l)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 (let ((new-word (read-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 "Lookup string (`*' is wildcard): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 (new-line 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 (if new-word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 (set-buffer (get-buffer-create
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 ispell-choices-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 (setq count ?0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 skipped 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 mode-line-format (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 "-- %b -- word: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 new-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 miss (lookup-words new-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 choices miss)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 (while (and choices ; adjust choices window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 (< (if (> (+ 7 (current-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 (length (car choices))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 (if (> count ?~) 3 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 (window-width))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 (insert "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 (setq new-line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 (1+ new-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 new-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 max-lines))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 (while (memq count command-characters)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 (setq count (1+ count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 skipped (1+ skipped)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 (insert "(" count ") " (car choices) " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 (setq choices (cdr choices)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 count (1+ count)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 (setq count (- count ?0 skipped)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 (select-window (previous-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 (if (and (/= new-line line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 (> (max line new-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 ispell-choices-win-default-height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 (let* ((minh ispell-choices-win-default-height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 (gr-bl (if (< line minh) ; blanks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 (- minh line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 (shr-bl (if (< new-line minh) ; blanks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 (- minh new-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 (if (> new-line line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 (enlarge-window (- new-line line gr-bl))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 (shrink-window (- line new-line shr-bl)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 (setq line new-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 (select-window (next-window)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 t) ; reselect from new choices
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 ((= char ?u)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 (process-send-string ispell-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 (concat "*" (downcase word) "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 (setq ispell-pdict-modified-p '(t)) ; dictionary modified!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 ((= char ?m) ; type in what to insert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 (process-send-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 ispell-process (concat "*" (read-string "Insert: " word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 (setq ispell-pdict-modified-p '(t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 (cons word nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 ((and (>= num 0) (< num count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 (if ispell-query-replace-choices ; Query replace flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 (list (nth num miss) 'query-replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 (nth num miss)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 ((= char ?\C-l)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 (redraw-display) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 ((= char ?\C-r)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 (save-window-excursion (recursive-edit)) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 ((= char ?\C-z)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 (funcall (key-binding "\C-z"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 (t (ding) t))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 ;; protected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 (if ispell-highlight-p ; unhighlight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 (select-window textwin)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 (ispell-highlight-spelling-error start end))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 (defun ispell-help ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 "Display a list of the options available when a misspelling is encountered.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 Selections are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 DIGIT: Replace the word with a digit offered in the *Choices* buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 SPC: Accept word this time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 `i': Accept word and insert into private dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 `a': Accept word for this session.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 `A': Accept word and place in `buffer-local dictionary'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 `r': Replace word with typed-in value. Rechecked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 `R': Replace word with typed-in value. Query-replaced in buffer. Rechecked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 `?': Show these commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 `x': Exit spelling buffer. Move cursor to original point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 `X': Exit spelling buffer. Leaves cursor at the current point, and permits
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 the aborted check to be completed later.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 `q': Quit spelling session (Kills ispell process).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 `l': Look up typed-in replacement in alternate dictionary. Wildcards okay.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 `u': Like `i', but the word is lower-cased first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 `m': Like `i', but allows one to include dictionary completion information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 `C-l': redraws screen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 `C-r': recursive edit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 `C-z': suspend emacs or iconify frame"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 (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
1290 "[i]nsert into private dictionary"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 (help-2 (concat "[l]ook a word up in alternate dictionary; "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 "e[x/X]it; [q]uit session"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 (help-3 (concat "[u]ncapitalized insert into dictionary. "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 "Type 'C-h d ispell-help' for more help")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 (if ispell-help-in-bufferp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 (ispell-overlay-window 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 (switch-to-buffer (get-buffer-create "*Ispell Help*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 (insert (concat help-1 "\n" help-2 "\n" help-3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 (sit-for 5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 (kill-buffer "*Ispell Help*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 (select-window (minibuffer-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 ;;(enlarge-window 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 (cond ((and (< emacs-minor-version 12)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 (string-match "Lucid" emacs-version))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 (message help-3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 (enlarge-window 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 (message help-2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 (enlarge-window 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 (message help-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 (goto-char (point-min)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 (if (string-lessp "19" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 (message nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 (enlarge-window 2)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1318 ;; Make sure we display the minibuffer
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1319 ;; in this window, not some other.
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 78
diff changeset
1320 (if (fboundp 'set-minibuffer-window)
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 78
diff changeset
1321 (set-minibuffer-window (selected-window)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 (insert (concat help-1 "\n" help-2 "\n" help-3))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 (sit-for 5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 (erase-buffer)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 (defun lookup-words (word &optional lookup-dict)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 "Look up word in word-list dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 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
1330 Otherwise the variable `ispell-grep-command' contains the command used to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 search for the words (usually egrep).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 Optional second argument contains the dictionary to use; the default is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 `ispell-alternate-dictionary'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 ;; 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
1336 ;; into a buffer. Hence there is no need to save the filter values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 (if (null lookup-dict)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 (setq lookup-dict ispell-alternate-dictionary))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 (let* ((process-connection-type ispell-use-ptys-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 (wild-p (string-match "\\*" word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 (look-p (and ispell-look-p ; Only use look for an exact match.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 (or ispell-have-new-look (not wild-p))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 (ispell-grep-buffer (get-buffer-create "*Ispell-Temp*")) ; result buf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 (prog (if look-p ispell-look-command ispell-grep-command))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 (args (if look-p ispell-look-options ispell-grep-options))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 status results loc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 (message "Starting \"%s\" process..." (file-name-nondirectory prog))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 (set-buffer ispell-grep-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 (if look-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 ;; convert * to .*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 (insert "^" word "$")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 (while (search-backward "*" nil t) (insert "."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 (setq word (buffer-string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 (erase-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 (setq status (call-process prog nil t nil args word lookup-dict))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 ;; grep returns status 1 and no output when word not found, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 ;; is a perfectly normal thing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 (if (stringp status)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 (setq results (cons (format "error: %s exited with signal %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 (file-name-nondirectory prog) status)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 results))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 ;; else collect words into `results' in FIFO order
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 ;; assure we've ended with \n
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 (or (bobp) (= (preceding-char) ?\n) (insert ?\n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 (while (not (bobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 (setq loc (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 (forward-line -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 (setq results (cons (buffer-substring (point) (1- loc))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 results)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 ;; protected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 (kill-buffer ispell-grep-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 (if (and results (string-match ".+: " (car results)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 (error "%s error: %s" ispell-grep-command (car results))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 results))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 ;;; "ispell-filter" is a list of output lines from the generating function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 ;;; Each full line (ending with \n) is a separate item on the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 ;;; "output" can contain multiple lines, part of a line, or both.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 ;;; "start" and "end" are used to keep bounds on lines when "output" contains
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 ;;; multiple lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 ;;; "ispell-filter-continue" is true when we have received only part of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 ;;; 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
1389 ;;; 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
1390 ;;; This is the case when a process dies or fails. The default behavior
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 ;;; in this case treats the next input received as fresh input.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 (defun ispell-filter (process output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 "Output filter function for ispell, grep, and look."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 (let ((start 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 (continue t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 (while continue
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 (setq end (string-match "\n" output start)) ; get text up to the newline.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 ;; 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
1401 ;; are not continuing, treat the next item as a separate list. When
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 ;; ispell-filter-continue is asserted, ispell-filter *should* always be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 ;; list!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 ;; Continue with same line (item)?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 (if (and ispell-filter-continue ispell-filter (listp ispell-filter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 ;; Yes. Add it to the prev item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 (setcar ispell-filter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 (concat (car ispell-filter) (substring output start end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 ;; No. This is a new line and item.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 (setq ispell-filter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 (cons (substring output start end) ispell-filter)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 (if (null end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 ;; We've completed reading the output, but didn't finish the line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 (setq ispell-filter-continue t continue nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 ;; skip over newline, this line complete.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 (setq ispell-filter-continue nil end (1+ end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 (if (= end (length output)) ; No more lines in output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 (setq continue nil) ; so we can exit the filter.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 (setq start end)))))) ; else move start to next line of input
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 ;;; This function destroys the mark location if it is in the word being
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 ;;; highlighted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 (defun ispell-highlight-spelling-error-generic (start end &optional highlight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 "Highlight the word from START to END with a kludge using `inverse-video'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 When the optional third arg HIGHLIGHT is set, the word is highlighted;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 otherwise it is displayed normally."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 (let ((modified (buffer-modified-p)) ; don't allow this fn to modify buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 (buffer-read-only nil) ; Allow highlighting read-only buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 (text (buffer-substring start end)) ; Save highlight region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 (inhibit-quit t) ; inhibit interrupt processing here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 (buffer-undo-list t)) ; don't clutter the undo list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 (delete-region start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 (insert-char ? (- end start)) ; mimimize amount of redisplay
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 (sit-for 0) ; update display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 (if highlight (setq inverse-video (not inverse-video))) ; toggle video
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 (delete-region start end) ; delete whitespace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 (insert text) ; insert text in inverse video.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 (sit-for 0) ; update display showing inverse video.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 (if highlight (setq inverse-video (not inverse-video))) ; toggle video
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 (set-buffer-modified-p modified))) ; don't modify if flag not set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 (defun ispell-highlight-spelling-error-lucid (start end &optional highlight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 "Highlight the word from START to END using `isearch-highlight'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 When the optional third arg HIGHLIGHT is set, the word is highlighted,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 otherwise it is displayed normally."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 (if highlight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 (isearch-highlight start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 (isearch-dehighlight t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 ;;(sit-for 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 (defun ispell-highlight-spelling-error-overlay (start end &optional highlight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 "Highlight the word from START to END using overlays.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 When the optional third arg HIGHLIGHT is set, the word is highlighted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 otherwise it is displayed normally.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 The variable `ispell-highlight-face' selects the face to use for highlighting."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 (if highlight
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 (setq ispell-overlay (make-overlay start end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 (overlay-put ispell-overlay 'face ispell-highlight-face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 (delete-overlay ispell-overlay)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 (defun ispell-highlight-spelling-error (start end &optional highlight)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 ((string-match "Lucid" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 (ispell-highlight-spelling-error-lucid start end highlight))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 ((and (string-lessp "19" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 (featurep 'faces) window-system)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 (ispell-highlight-spelling-error-overlay start end highlight))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 (t (ispell-highlight-spelling-error-generic start end highlight))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 (defun ispell-overlay-window (height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 "Create a window covering the top HEIGHT lines of the current window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 Ensure that the line above point is still visible but otherwise avoid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 scrolling the current window. Leave the new window selected."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 (let ((oldot (save-excursion (forward-line -1) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 (top (save-excursion (move-to-window-line height) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 ;; If line above old point (line starting at olddot) would be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 ;; hidden by new window, scroll it to just below new win
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 ;; otherwise set top line of other win so it doesn't scroll.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 (if (< oldot top) (setq top oldot))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 ;; 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
1491 ;; line) is demanded, the last line is not visible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 ;; At least this happens on AIX 3.2, lemacs w/ Motif, font 9x15.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 ;; So we increment the height for this case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 (if (string-match "19\.9.*Lucid" (emacs-version))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 (setq height (1+ height)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 (split-window nil height)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 (set-window-start (next-window) top))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 ;;; Should we add a compound word match return value?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 (defun ispell-parse-output (output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 "Parse the OUTPUT string from Ispell and return:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 1: t for an exact match.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 2: A string containing the root word for a match via suffix removal.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 3: A list of possible correct spellings of the format:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 '(\"ORIGINAL-WORD\" OFFSET MISS-LIST GUESS-LIST)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 ORIGINAL-WORD is a string of the possibly misspelled word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 OFFSET is an integer giving the line offset of the word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 MISS-LIST and GUESS-LIST are possibly null lists of guesses and misses."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 ((string= output "") t) ; for startup with pipes...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 ((string= output "*") t) ; exact match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 ((string= output "-") t) ; compound word match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 ((string= (substring output 0 1) "+") ; found cuz of root word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 (substring output 2)) ; return root word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 (t ; need to process &, ?, and #'s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 (let ((type (substring output 0 1)) ; &, ?, or #
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 (original-word (substring output 2 (string-match " " output 2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 (cur-count 0) ; contains number of misses + guesses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 count miss-list guess-list offset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 (setq output (substring output (match-end 0))) ; skip over misspelling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 (if (string= type "#")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 (setq count 0) ; no misses for type #
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 (setq count (string-to-int output) ; get number of misses.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 output (substring output (1+ (string-match " " output 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 (setq offset (string-to-int output))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 (if (string= type "#") ; No miss or guess list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 (setq output nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 (setq output (substring output (1+ (string-match " " output 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 (while output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 (let ((end (string-match ", \\|\\($\\)" output))) ; end of miss/guess.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 (setq cur-count (1+ cur-count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 (if (> cur-count count)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 (setq guess-list (cons (substring output 0 end) guess-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 (setq miss-list (cons (substring output 0 end) miss-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 (if (match-end 1) ; True only when at end of line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 (setq output nil) ; no more misses or guesses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 (setq output (substring output (+ end 2))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 (list original-word offset miss-list guess-list)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 (defun check-ispell-version ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 ;; This is a little wasteful as we actually launch ispell twice: once
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 ;; 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
1545 ;; get confused by version mismatches *all* the time (and I've got the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 ;; 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
1547 ;; 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
1548 ;; all versions, since versions earlier than 3.0.09 didn't identify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 ;; themselves on startup.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 (let ((case-fold-search t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 ;; avoid bugs when syntax of `.' changes in various default modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 (default-major-mode 'fundamental-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 status)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 (set-buffer (get-buffer-create " *ispell-tmp*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 (setq status (call-process ispell-program-name nil t nil "-v"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 (if (not (memq status '(0 nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 (error "%s exited with %s %s" ispell-program-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 (if (stringp status) "signal" "code") status))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 (if (not (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 (concat "\\b\\("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 (regexp-quote (car ispell-required-version))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 "\\)\\([0-9]*\\)\\b")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 (error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 "%s version %s* is required: try renaming ispell4.el to ispell.el"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 ispell-program-name (car ispell-required-version))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 ;; check that it is the correct version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 (if (< (car (read-from-string (buffer-substring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 (match-beginning 2) (match-end 2))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 (car (cdr ispell-required-version)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 (setq ispell-offset 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 (kill-buffer (current-buffer)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 (defun ispell-init-process ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 "Check status of Ispell process and start if necessary."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 (if (and ispell-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 (eq (process-status ispell-process) 'run)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 ;; If we're using a personal dictionary, assure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 ;; we're in the same default directory!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 (or (not ispell-personal-dictionary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 (equal ispell-process-directory default-directory)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 (setq ispell-filter nil ispell-filter-continue nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 ;; may need to restart to select new personal dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 (ispell-kill-ispell t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 (message "Starting new Ispell process...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 (sit-for 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 (check-ispell-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 (setq ispell-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 (let ((process-connection-type ispell-use-ptys-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 (apply 'start-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 "ispell" nil ispell-program-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 "-a" ; accept single input lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 "-m" ; make root/affix combos not in dict
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 (let (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 ;; Local dictionary becomes the global dictionary in use.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 (if ispell-local-dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 (setq ispell-dictionary ispell-local-dictionary))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 (setq args (ispell-get-ispell-args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 (if ispell-dictionary ; use specified dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 (setq args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 (append (list "-d" ispell-dictionary) args)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 (if ispell-personal-dictionary ; use specified pers dict
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 (setq args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 (append args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 (list "-p"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 ispell-personal-dictionary)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 (setq args (append args ispell-extra-args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 args)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 ispell-filter nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 ispell-filter-continue nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 ispell-process-directory default-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 (set-process-filter ispell-process 'ispell-filter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 (accept-process-output ispell-process) ; Get version ID line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 (cond ((null ispell-filter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 (error "%s did not output version line" ispell-program-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 ((and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 (stringp (car ispell-filter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 (if (string-match "warning: " (car ispell-filter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 (accept-process-output ispell-process 5) ; 1st was warn msg.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 (stringp (car ispell-filter)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 (null (cdr ispell-filter)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 (string-match "^@(#) " (car ispell-filter)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 ;; got the version line as expected (we already know it's the right
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 ;; version, so don't bother checking again.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 ;; Otherwise, it must be an error message. Show the user.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 ;; But first wait to see if some more output is going to arrive.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 ;; Otherwise we get cool errors like "Can't open ".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 (sleep-for 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 (accept-process-output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 (error "%s" (mapconcat 'identity ispell-filter "\n"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 (setq ispell-filter nil) ; Discard version ID line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 (let ((extended-char-mode (ispell-get-extended-character-mode)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 (if extended-char-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 (process-send-string ispell-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 (concat extended-char-mode "\n"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 (process-kill-without-query ispell-process)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 (defun ispell-kill-ispell (&optional no-error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 "Kill current Ispell process (so that you may start a fresh one).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 With NO-ERROR, just return non-nil if there was no Ispell running."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 (if (not (and ispell-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 (eq (process-status ispell-process) 'run)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 (or no-error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 (error "There is no ispell process running!"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 (kill-process ispell-process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 (setq ispell-process nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 (message "Ispell process killed")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 ;;; ispell-change-dictionary is set in some people's hooks. Maybe this should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 ;;; call ispell-init-process rather than wait for a spell checking command?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 (defun ispell-change-dictionary (dict &optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 "Change `ispell-dictionary' (q.v.) and kill old Ispell process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 A new one will be started as soon as necessary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 By just answering RET you can find out what the current dictionary is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 With prefix argument, set the default directory."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 (list (completing-read
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 "Use new dictionary (RET for current, SPC to complete): "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 (cons (cons "default" nil) ispell-dictionary-alist) nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 current-prefix-arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 (if (equal dict "default") (setq dict nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 ;; This relies on completing-read's bug of returning "" for no match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 (cond ((equal dict "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 (message "Using %s dictionary"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 (or ispell-local-dictionary ispell-dictionary "default")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 ((and (equal dict ispell-dictionary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 (or (null ispell-local-dictionary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 (equal dict ispell-local-dictionary)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 ;; Specified dictionary is the default already. No-op
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 (and (interactive-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 (message "No change, using %s dictionary" (or dict "default"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 (t ; reset dictionary!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 (if (assoc dict ispell-dictionary-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 (if (or arg (null dict)) ; set default dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 (setq ispell-dictionary dict))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 (if (null arg) ; set local dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 (setq ispell-local-dictionary dict)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 (error "Illegal dictionary: %s" dict))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 (ispell-kill-ispell t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 (message "(Next %sIspell command will use %s dictionary)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 (cond ((equal ispell-local-dictionary ispell-dictionary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 (arg "global ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 (t "local "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 (or (if (or (equal ispell-local-dictionary ispell-dictionary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 (null arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 ispell-local-dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 ispell-dictionary)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 "default")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 ;;; Spelling of comments are checked when ispell-check-comments is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 (defun ispell-region (reg-start reg-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 "Interactively check a region for spelling errors."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 (interactive "r") ; Don't flag errors on read-only bufs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 (ispell-accept-buffer-local-defs) ; set up dictionary, local words, etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 (message "Spell checking %s using %s dictionary..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 (if (and (= reg-start (point-min)) (= reg-end (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 (buffer-name) "region")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 (or ispell-dictionary "default"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 ;; Returns cursor to original location.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 (goto-char reg-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 (let ((transient-mark-mode nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 ref-type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 (while (and (not ispell-quit) (< (point) reg-end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 (let ((start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 (offset-change 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 (end (save-excursion (end-of-line) (min (point) reg-end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 (ispell-casechars (ispell-get-casechars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 (cond ; LOOK AT THIS LINE AND SKIP OR PROCESS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 ((eolp) ; END OF LINE, just go to next line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 (forward-char 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 ((and (null ispell-check-comments) ; SKIPPING COMMENTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 comment-start ; skip comments that start on the line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 (search-forward comment-start end t)) ; or found here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 (if (= (- (point) start) (length comment-start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 ;; comment starts the line. Skip entire line or region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 (if (string= "" comment-end) ; skip to next line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 (beginning-of-line 2) ; or jump to comment end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 (search-forward comment-end reg-end 'limit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 ;; Comment later in line. Check spelling before comment.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 (let ((limit (- (point) (length comment-start))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 (goto-char (1- limit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 (if (looking-at "\\\\") ; "quoted" comment, don't skip
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 ;; quoted comment. Skip over comment-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 (if (= start (1- limit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 (setq limit (+ limit (length comment-start)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 (setq limit (1- limit))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 ;; Only check when "casechars" or math before comment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 (if (or (re-search-forward ispell-casechars limit t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 (re-search-forward "[][()$]" limit t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 (setq string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 (concat "^" (buffer-substring start limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 offset-change (- offset-change ispell-offset)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 (goto-char limit))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 ((looking-at "[---#@*+!%~^]") ; SKIP SPECIAL ISPELL CHARACTERS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 (forward-char 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 ((or (and ispell-skip-tib ; SKIP TIB REFERENCES OR SGML MARKUP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 (re-search-forward ispell-tib-ref-beginning end t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 (setq ref-type 'tib))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 (and ispell-skip-sgml
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1767 (re-search-forward "[<&]" end t)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 (setq ref-type 'sgml)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 (if (or (and (eq 'tib ref-type) ; tib tag is 2 chars.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 (= (- (point) 2) start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 (and (eq 'sgml ref-type) ; sgml skips 1 char.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 (= (- (point) 1) start)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 ;; Skip to end of reference, not necessarily on this line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 ;; Return an error if tib/sgml reference not found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 (if (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 (eq 'tib ref-type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 (not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 (re-search-forward ispell-tib-ref-end reg-end t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 (and (eq 'sgml ref-type)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1781 (not (re-search-forward "[>;]" reg-end t))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 (ispell-pdict-save ispell-silently-savep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 (ding)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 (message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 "Open tib or SGML command. Fix buffer or set "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 (if (eq 'tib ref-type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 "ispell-skip-tib"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 "ispell-skip-sgml")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 " to nil"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 ;; keep cursor at error location
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 (setq ispell-quit (- (point) 2))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 ;; Check spelling between reference and start of the line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 (let ((limit (- (point) (if (eq 'tib ref-type) 2 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 (if (or (re-search-forward ispell-casechars limit t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 (re-search-forward "[][()$]" limit t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 (setq string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 (concat "^" (buffer-substring start limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 offset-change (- offset-change ispell-offset)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 (goto-char limit))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 ((or (re-search-forward ispell-casechars end t) ; TEXT EXISTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 (re-search-forward "[][()$]" end t)) ; or MATH COMMANDS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 (setq string (concat "^" (buffer-substring start end) "\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 offset-change (- offset-change ispell-offset))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 (goto-char end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 (t (beginning-of-line 2))) ; EMPTY LINE, skip it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 (setq end (point)) ; "end" tracks end of region to check.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 (if string ; there is something to spell!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 (let (poss)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 ;; send string to spell process and get input.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 (process-send-string ispell-process string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 (while (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 (accept-process-output ispell-process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 ;; Last item of output contains a blank line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 (not (string= "" (car ispell-filter)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 ;; parse all inputs from the stream one word at a time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 ;; Place in FIFO order and remove the blank item.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 (setq ispell-filter (nreverse (cdr ispell-filter)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 (while (and (not ispell-quit) ispell-filter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 (setq poss (ispell-parse-output (car ispell-filter)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 (if (listp poss) ; spelling error occurred.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 (let* ((word-start (+ start offset-change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 (car (cdr poss))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 (word-end (+ word-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 (length (car poss))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 (goto-char word-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 ;; Adjust the horizontal scroll & point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 (ispell-horiz-scroll)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 (goto-char word-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 (ispell-horiz-scroll)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 (goto-char word-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 (ispell-horiz-scroll)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 (if (/= word-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 (search-forward (car poss) word-end t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 ;; This occurs due to filter pipe problems
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 (error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 (concat "Ispell misalignment: word "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 "`%s' point %d; please retry")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 (car poss) word-start))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1848 (if (not (pos-visible-in-window-p))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1849 (sit-for 0))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 (if ispell-keep-choices-win
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 (setq replace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 (ispell-command-loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 (car (cdr (cdr poss)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 (car (cdr (cdr (cdr poss))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 (car poss) word-start word-end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 (setq replace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 (ispell-command-loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 (car (cdr (cdr poss)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 (car (cdr (cdr (cdr poss))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 (car poss) word-start word-end))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 ((and replace (listp replace))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 ;; REPLACEMENT WORD entered. Recheck line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 ;; starting with the replacement word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 (setq ispell-filter nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 string (buffer-substring word-start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 word-end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 (let ((change (- (length (car replace))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 (length (car poss)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 ;; adjust regions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 (setq reg-end (+ reg-end change)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 offset-change (+ offset-change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 change)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 (if (not (equal (car replace) (car poss)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 (delete-region word-start word-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 (insert (car replace))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 ;; I only need to recheck typed-in replacements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 (if (not (eq 'query-replace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 (car (cdr replace))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 (backward-char (length (car replace))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 (setq end (point)) ; reposition for recheck
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 ;; when second arg exists, query-replace, saving regions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 (if (car (cdr replace))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 (set-marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 ispell-query-replace-marker reg-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 ;; Assume case-replace &
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 ;; case-fold-search correct?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 (query-replace string (car replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 (setq reg-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 (marker-position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 ispell-query-replace-marker))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 (set-marker ispell-query-replace-marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 ((or (null replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 (equal 0 replace)) ; ACCEPT/INSERT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 (if (equal 0 replace) ; BUFFER-LOCAL DICT ADD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 (setq reg-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 (ispell-add-per-file-word-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 (car poss) reg-end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 ;; This avoids pointing out the word that was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 ;; just accepted (via 'i' or 'a') if it follows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 ;; on the same line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 ;; Redo check following the accepted word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 (if (and ispell-pdict-modified-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 (listp ispell-pdict-modified-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 ;; Word accepted. Recheck line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 (setq ispell-pdict-modified-p ; update flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 (car ispell-pdict-modified-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 ispell-filter nil ; discontinue check
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 end word-start))) ; reposition loc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 (replace ; STRING REPLACEMENT for this word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 (delete-region word-start word-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 (insert replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 (let ((change (- (length replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 (length (car poss)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 (setq reg-end (+ reg-end change)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 offset-change (+ offset-change change)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 end (+ end change)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 (if (not ispell-quit)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1925 (message "Continuing spelling check using %s dictionary..."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1926 (or ispell-dictionary "default")))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 (sit-for 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 ;; finished with line!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 (setq ispell-filter (cdr ispell-filter)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 (goto-char end)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 (not ispell-quit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 ;; protected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 (if (get-buffer ispell-choices-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 (kill-buffer ispell-choices-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 (if ispell-quit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 ;; preserve or clear the region for ispell-continue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 (if (not (numberp ispell-quit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 (set-marker ispell-region-end nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 ;; Enable ispell-continue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 (set-marker ispell-region-end reg-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 (goto-char ispell-quit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 ;; Check for aborting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 (if (and ispell-checking-message (numberp ispell-quit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 (setq ispell-quit nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 (error "Message send aborted.")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 (setq ispell-quit nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 (set-marker ispell-region-end nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 ;; Only save if successful exit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 (ispell-pdict-save ispell-silently-savep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 (message "Spell-checking done"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 (defun ispell-buffer ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 "Check the current buffer for spelling errors interactively."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 (ispell-region (point-min) (point-max)))
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-continue ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 "Continue a spelling session after making some changes."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 (if (not (marker-position ispell-region-end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 (message "No session to continue. Use 'X' command when checking!")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 (if (not (equal (marker-buffer ispell-region-end) (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 (message "Must continue ispell from buffer %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 (buffer-name (marker-buffer ispell-region-end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 (ispell-region (point) (marker-position ispell-region-end)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 ;;; Horizontal scrolling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 (defun ispell-horiz-scroll ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 "Places point within the horizontal visibility of its window area."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 (if truncate-lines ; display truncating lines?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 ;; See if display needs to be scrolled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 (let ((column (- (current-column) (max (window-hscroll) 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 (if (and (< column 0) (> (window-hscroll) 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 (scroll-right (max (- column) 10))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 (if (>= column (- (window-width) 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 (scroll-left (max (- column (window-width) -3) 10)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 ;;; Interactive word completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 ;;; Forces "previous-word" processing. Do we want to make this selectable?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 (defun ispell-complete-word (&optional interior-frag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 "Look up word before or under point in dictionary (see lookup-words command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 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
1994 may be a character sequence inside of a word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 Standard ispell choices are then available."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 (let ((cursor-location (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 case-fold-search
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 (word (ispell-get-word nil "\\*")) ; force "previous-word" processing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 start end possibilities replacement)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 (setq start (car (cdr word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 end (car (cdr (cdr word)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 word (car word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 possibilities
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 (or (string= word "") ; Will give you every word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 (lookup-words (concat (if interior-frag "*") word "*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 ispell-complete-word-dict)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 (cond ((eq possibilities t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 (message "No word to complete"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 ((null possibilities)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 (message "No match for \"%s\"" word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 (t ; There is a modification...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 (cond ; Try and respect case of word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 ((string-match "^[^A-Z]+$" word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 (setq possibilities (mapcar 'downcase possibilities)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 ((string-match "^[^a-z]+$" word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 (setq possibilities (mapcar 'upcase possibilities)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 ((string-match "^[A-Z]" word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 (setq possibilities (mapcar 'capitalize possibilities))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 (setq replacement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 (ispell-command-loop possibilities nil word start end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 ((equal 0 replacement) ; BUFFER-LOCAL ADDITION
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 (ispell-add-per-file-word-list word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 (replacement ; REPLACEMENT WORD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 (delete-region start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 (setq word (if (atom replacement) replacement (car replacement))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 cursor-location (+ (- (length word) (- end start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 cursor-location))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 (insert word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 (if (not (atom replacement)) ; recheck spelling of replacement.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 (goto-char cursor-location)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 (ispell-word nil t)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 (if (get-buffer ispell-choices-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 (kill-buffer ispell-choices-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 (ispell-pdict-save ispell-silently-savep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 (goto-char cursor-location)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 (defun ispell-complete-word-interior-frag ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 "Completes word matching character sequence inside a word."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 (ispell-complete-word t))
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 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 ;;; Ispell Minor Mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 (defvar ispell-minor-mode nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 "Non-nil if Ispell minor mode is enabled.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 ;; Variable indicating that ispell minor mode is active.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 (make-variable-buffer-local 'ispell-minor-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 (or (assq 'ispell-minor-mode minor-mode-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 (setq minor-mode-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 (cons '(ispell-minor-mode " Spell") minor-mode-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 (defvar ispell-minor-keymap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 (let ((map (make-sparse-keymap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 (define-key map " " 'ispell-minor-check)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 (define-key map "\r" 'ispell-minor-check)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 "Keymap used for Ispell minor mode.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 (or (not (boundp 'minor-mode-map-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 (assoc 'ispell-minor-mode minor-mode-map-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 (setq minor-mode-map-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 (cons (cons 'ispell-minor-mode ispell-minor-keymap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 minor-mode-map-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 (defun ispell-minor-mode (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 "Toggle Ispell minor mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 With prefix arg, turn Ispell minor mode on iff arg is positive.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 In Ispell minor mode, pressing SPC or RET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 warns you if the previous word is incorrectly spelled."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 (setq ispell-minor-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 (not (or (and (null arg) ispell-minor-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 (<= (prefix-numeric-value arg) 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 (redraw-modeline))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 (defun ispell-minor-check ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 ;; Check previous word then continue with the normal binding of this key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 (interactive "*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 (let ((ispell-minor-mode nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 (ispell-check-only t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 (narrow-to-region (point-min) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 (ispell-word nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 (call-interactively (key-binding (this-command-keys)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 ;;; Ispell Message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 ;;; Original from D. Quinlan, E. Bradford, A. Albert, and M. Ernst
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 (defvar ispell-message-text-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 (mapconcat (function identity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 ;; Matches postscript files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 "^%!PS-Adobe-[123].0"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 ;; Matches uuencoded text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 "^begin [0-9][0-9][0-9] .*\nM.*\nM.*\nM"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 ;; Matches shell files (esp. auto-decoding)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 "^#! /bin/[ck]?sh"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 ;; Matches context difference listing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 "\\(diff -c .*\\)?\n\\*\\*\\* .*\n--- .*\n\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*"
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2117 ;; Matches reporter.el bug report
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2118 "^current state:\n==============\n"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 ;; Matches "----------------- cut here"
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2120 ;; and "------- Start of forwarded message"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2121 "^[-=_]+\\s ?\\(cut here\\|Start of forwarded message\\)")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 "\\|")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 "*End of text which will be checked in ispell-message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 If it is a string, limit at first occurrence of that regular expression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 Otherwise, it must be a function which is called to get the limit.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 (defvar ispell-message-start-skip
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 (mapconcat (function identity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 ;; Matches forwarded messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 "^---* Forwarded Message"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 ;; Matches PGP Public Key block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 "^---*BEGIN PGP [A-Z ]*--*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 "\\|")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 "Spelling is skipped inside these start/end groups by ispell-message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 Assumed that blocks are not mutually inclusive.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 (defvar ispell-message-end-skip
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 (mapconcat (function identity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 ;; Matches forwarded messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 "^--- End of Forwarded Message"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 ;; Matches PGP Public Key block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 "^---*END PGP [A-Z ]*--*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 "\\|")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 "Spelling is skipped inside these start/end groups by ispell-message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 Assumed that blocks are not mutually inclusive.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 (defun ispell-message ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 "Check the spelling of a mail message or news post.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 Don't check spelling of message headers except the Subject field.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 Don't check included messages.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2160 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
2161 use the `x' or `q' command. (Any subsequent regions will be checked.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 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
2163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 To spell-check whenever a message is sent, include the appropriate lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 in your .emacs file:
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2166 (add-hook 'message-send-hook 'ispell-message)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 (add-hook 'mail-send-hook 'ispell-message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 (add-hook 'mh-before-send-letter-hook 'ispell-message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 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
2171 `news-reply-mode-hook' or `mail-mode-hook' the following lambda expression:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 (let* ((internal-messagep (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 (concat "^"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 (regexp-quote mail-header-separator)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 "$")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 nil t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 (limit (copy-marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 ((not ispell-message-text-end) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 ((char-or-string-p ispell-message-text-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 (if (re-search-forward ispell-message-text-end nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 (match-beginning 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 (t (min (point-max) (funcall ispell-message-text-end))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 (cite-regexp ;Prefix of inserted text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 ((featurep 'supercite) ; sc 3.0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 (concat "\\(" (sc-cite-regexp) "\\)" "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 (ispell-non-empty-string sc-reference-tag-string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 ((featurep 'sc) ; sc 2.3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 (concat "\\(" sc-cite-regexp "\\)" "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 (ispell-non-empty-string sc-reference-tag-string)))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2198 ((equal major-mode 'news-reply-mode) ;GNUS 4 & below
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 (concat "In article <" "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 (if mail-yank-prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 (ispell-non-empty-string mail-yank-prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 "^ \\|^\t")))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2203 ((equal major-mode 'message-mode) ;GNUS 5
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2204 (concat ".*@.* writes:$" "\\|"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2205 (if mail-yank-prefix
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2206 (ispell-non-empty-string mail-yank-prefix)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2207 "^ \\|^\t")))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 ((equal major-mode 'mh-letter-mode) ; mh mail message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 (ispell-non-empty-string mh-ins-buf-prefix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 ((not internal-messagep) ; Assume n sent us this message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 (concat "In [a-zA-Z.]+ you write:" "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 "In <[^,;&+=]+> [^,;&+=]+ writes:" "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 " *> *"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 ((boundp 'vm-included-text-prefix) ; VM mail message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 (concat "[^,;&+=]+ writes:" "\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 (ispell-non-empty-string vm-included-text-prefix)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 (mail-yank-prefix ; vanilla mail message.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 (ispell-non-empty-string mail-yank-prefix))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 (t "^ \\|^\t")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 (cite-regexp-start (concat "^[ \t]*$\\|" cite-regexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 (cite-regexp-end (concat "^\\(" cite-regexp "\\)"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 (old-case-fold-search case-fold-search)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 (case-fold-search t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 (ispell-checking-message t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 ;; Skip header fields except Subject: without Re:'s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 ;;(search-forward mail-header-separator nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 (while (if internal-messagep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 (< (point) internal-messagep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 (and (looking-at "[a-zA-Z---]+:\\|\t\\| ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 (not (eobp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 (if (looking-at "Subject: *") ; Spell check new subject fields
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 (goto-char (match-end 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 (if (and (not (looking-at ".*Re\\>"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 (not (looking-at "\\[")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 (let ((case-fold-search old-case-fold-search))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 (ispell-region (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 (end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 (while (looking-at "\n[ \t]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 (end-of-line 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 (point)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 (forward-line 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 (setq case-fold-search nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 ;; Skip mail header, particularly for non-english languages.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 (if (looking-at (concat (regexp-quote mail-header-separator) "$"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 (forward-line 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 (while (< (point) limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 ;; Skip across text cited from other messages.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 (while (and (looking-at cite-regexp-start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 (< (point) limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 (zerop (forward-line 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 (if (< (point) limit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 (let* ((start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 ;; Check the next batch of lines that *aren't* cited.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 (end-c (and (re-search-forward cite-regexp-end limit 'end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 (match-beginning 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 ;; Skip a block of included text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 (end-fwd (and (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 (re-search-forward ispell-message-start-skip
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 limit 'end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 (progn (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 (end (or (and end-c end-fwd (min end-c end-fwd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 end-c end-fwd
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
2268 ;; default to limit of text.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 (marker-position limit))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 (ispell-region start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 (if (and end-fwd (= end end-fwd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 (goto-char end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 (re-search-forward ispell-message-end-skip limit 'end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 (goto-char end)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 (set-marker limit nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 (defun ispell-non-empty-string (string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 (if (or (not string) (string-equal string ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 "\\'\\`" ; An unmatchable string if string is null.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 (regexp-quote string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284
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 ;;; Buffer Local Functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 ;;; **********************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 (defun ispell-accept-buffer-local-defs ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 "Load all buffer-local information, restarting ispell when necessary."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 (ispell-buffer-local-dict) ; May kill ispell-process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294 (ispell-buffer-local-words) ; Will initialize ispell-process.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 (ispell-buffer-local-parsing))
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-buffer-local-parsing ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 "Place Ispell into parsing mode for this buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 Overrides the default parsing mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 Includes latex/nroff modes and extended character mode."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 ;; (ispell-init-process) must already be called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 (process-send-string ispell-process "!\n") ; Put process in terse mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 ;; 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
2305 (if (or (and (eq ispell-parser 'use-mode-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 (string-match "[Tt][Ee][Xx]-mode" (symbol-name major-mode)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 (eq ispell-parser 'tex))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 (process-send-string ispell-process "+\n") ; set ispell mode to tex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 (process-send-string ispell-process "-\n")) ; set mode to normal (nroff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 ;; Hard-wire test for SGML & HTML mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 (setq ispell-skip-sgml (memq major-mode '(sgml-mode html-mode)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 ;; Set default extended character mode for given buffer, if any.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 (let ((extended-char-mode (ispell-get-extended-character-mode)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 (if extended-char-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 (process-send-string ispell-process (concat extended-char-mode "\n"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 ;; Set buffer-local parsing mode and extended character mode, if specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 ;; Uses last valid definition
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 (while (search-forward ispell-parsing-keyword nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 (let ((end (save-excursion (end-of-line) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 (case-fold-search t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 (while (re-search-forward " *\\([^ \"]+\\)" end t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 ;; space separated definitions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 (setq string (buffer-substring (match-beginning 1) (match-end 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 (cond ((string-match "latex-mode" string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 (process-send-string ispell-process "+\n~tex\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 ((string-match "nroff-mode" string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 (process-send-string ispell-process "-\n~nroff"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 ((string-match "~" string) ; Set extended character mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 (process-send-string ispell-process (concat string "\n")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 (t (message "Illegal Ispell Parsing argument!")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 (sit-for 2))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 ;;; Can kill the current ispell process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 (defun ispell-buffer-local-dict ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 "Initializes local dictionary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 When a dictionary is defined in the buffer (see variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 `ispell-dictionary-keyword'), it will override the local setting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 from \\[ispell-change-dictionary].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 Both should not be used to define a buffer-local dictionary."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 (let (end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 ;; Override the local variable definition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 ;; Uses last valid definition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 (while (search-forward ispell-dictionary-keyword nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 (setq end (save-excursion (end-of-line) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 (if (re-search-forward " *\\([^ \"]+\\)" end t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 (setq ispell-local-dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 (buffer-substring (match-beginning 1) (match-end 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 (while (search-forward ispell-pdict-keyword nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 (setq end (save-excursion (end-of-line) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 (if (re-search-forward " *\\([^ \"]+\\)" end t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 (setq ispell-local-pdict
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 (buffer-substring (match-beginning 1) (match-end 1)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 ;; Reload if new personal dictionary defined.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 (if (and ispell-local-pdict
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 (not (equal ispell-local-pdict ispell-personal-dictionary)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 (ispell-kill-ispell t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 (setq ispell-personal-dictionary ispell-local-pdict)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 ;; Reload if new dictionary defined.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 (if (and ispell-local-dictionary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 (not (equal ispell-local-dictionary ispell-dictionary)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 (ispell-change-dictionary ispell-local-dictionary)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 (defun ispell-buffer-local-words ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 "Loads the buffer-local dictionary in the current buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 (if (and ispell-buffer-local-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 (not (equal ispell-buffer-local-name (buffer-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 (ispell-kill-ispell t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 (setq ispell-buffer-local-name nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 (ispell-init-process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 (while (search-forward ispell-words-keyword nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 (or ispell-buffer-local-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 (setq ispell-buffer-local-name (buffer-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 (let ((end (save-excursion (end-of-line) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 ;; buffer-local words separated by a space, and can contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 ;; any character other than a space.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 (while (re-search-forward " *\\([^ ]+\\)" end t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 (setq string (buffer-substring (match-beginning 1) (match-end 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 (process-send-string ispell-process (concat "@" string "\n")))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 ;;; returns optionally adjusted region-end-point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 (defun ispell-add-per-file-word-list (word &optional reg-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 "Adds new word to the per-file word list."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 (or ispell-buffer-local-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 (setq ispell-buffer-local-name (buffer-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 (if (null reg-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 (setq reg-end 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 (let (case-fold-search line-okay search done string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 (while (not done)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 (setq search (search-forward ispell-words-keyword nil 'move)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 line-okay (< (+ (length word) 1 ; 1 for space after word..
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 (progn (end-of-line) (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 80))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 (if (or (and search line-okay)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 (null search))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 (setq done t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 (if (null search)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 (open-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 (setq string (concat comment-start " "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 ispell-words-keyword))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 ;; in case the keyword is in the middle of the file....
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 (if (> reg-end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 (setq reg-end (+ reg-end (length string))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 (insert string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 (if (and comment-end (not (equal "" comment-end)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 (open-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 (insert comment-end)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 (if (> reg-end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 (setq reg-end (+ 1 reg-end (length word))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 (insert (concat " " word)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 reg-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 (defconst ispell-version "2.37 -- Tue Jun 13 12:05:28 EDT 1995")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 (provide 'ispell)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 ;;; LOCAL VARIABLES AND BUFFER-LOCAL VALUE EXAMPLES.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 ;;; Local Variable options:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 ;;; mode: name(-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 ;;; eval: expression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 ;;; local-variable: value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 ;;; The following sets the buffer local dictionary to english!
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 Variables:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 ;;; mode: emacs-lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 ;;; comment-column: 40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 ;;; ispell-local-dictionary: "english"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 ;;; End:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 ;;; MORE EXAMPLES OF ISPELL BUFFER-LOCAL VALUES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 ;;; The following places this file in nroff parsing and extended char modes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 ;;; Local IspellParsing: nroff-mode ~nroff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 ;;; Change IspellDict to IspellDict: to enable the following line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 ;;; Local IspellDict english
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 ;;; Change IspellPersDict to IspellPersDict: to enable the following line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 ;;; Local IspellPersDict ~/.ispell_lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 ;;; The following were automatically generated by ispell using the 'A' command:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 ; LocalWords: ispell ispell-highlight-p ispell-check-comments query-replace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 ; LocalWords: ispell-query-replace-choices ispell-skip-tib non-nil tib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 ; LocalWords: regexps ispell-tib-ref-beginning ispell-tib-ref-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 ;; ispell.el ends here