annotate lisp/packages/ispell.el @ 147:e186c2b7192d xemacs-20-2

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