home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / isp31b3.zip / ispell / ispell.el < prev    next >
Lisp/Scheme  |  1995-07-10  |  91KB  |  2,332 lines

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