annotate lisp/packages/ispell.el @ 124:9b50b4588a93 r20-1b15

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