home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Product / Product.zip / ispell40.zip / ispell.info (.txt) < prev    next >
GNU Info File  |  1993-06-01  |  26KB  |  489 lines

  1. This is Info file ispell.info, produced by Makeinfo-1.55 from the input
  2. file ispell.texi.
  3.    This file documents GNU ISPELL, an interactive spelling corrector.
  4.    Copyright (C) 1990 Free Software Foundation, Inc.
  5.    Permission is granted to make and distribute verbatim copies of this
  6. manual provided the copyright notice and this permission notice are
  7. preserved on all copies.
  8.    Permission is granted to copy and distribute modified versions of
  9. this manual under the conditions for verbatim copying, provided that
  10. the entire resulting derived work is distributed under the terms of a
  11. permission notice identical to this one.
  12.    Permission is granted to copy and distribute translations of this
  13. manual into another language, under the above conditions for modified
  14. versions, except that this permission notice may be stated in a
  15. translation approved by the Foundation.
  16. File: ispell.info,  Node: Top,  Next: License,  Prev: (dir),  Up: (dir)
  17.    `Ispell' is a program that helps you to correct typos in a file, and
  18. to find the correct spelling of words.  When presented with a word that
  19. is not in the dictionary, `ispell' attempts to find "near misses" that
  20. might include the word you meant.
  21.    This manual describes how to use ispell, as well as a little about
  22. its implementation.
  23. * Menu:
  24. * License::        Licensing information.
  25. * Emacs::        Using ispell from emacs
  26. * Standalone::        Using ispell by itself
  27. * Ask::            Using ispell to look up individual words
  28. * Private::        Your private dictionary
  29. * Compatibility::    Compatibility with the traditional spell program
  30. * Command summary::    All commands in emacs and standalone modes
  31. Implementation details:
  32. * Near misses::        Definition of a near miss
  33. * Arguments::        Flags to the ispell command
  34. * Interface::        How other programs can use ispell
  35. * Dictionary flags::    How the suffix stripper works
  36. * History::        Where it came from; authors
  37. File: ispell.info,  Node: License,  Next: Emacs,  Prev: Top,  Up: Top
  38. Licensing Information
  39. *********************
  40.    Ispell is "free"; this means that everyone is free to use it and
  41. free to redistribute it on a free basis.  Ispell is not in the public
  42. domain; it is copyrighted and there are restrictions on its
  43. distribution, but these restrictions are designed to permit everything
  44. that a good cooperating citizen would want to do.  What is not allowed
  45. is to try to prevent others from further sharing any version of ispell
  46. that they might get from you.
  47.    Specifically, we want to make sure that you have the right to give
  48. away copies of ispell, that you receive source code or else can get it
  49. if you want it, that you can change ispell or use pieces of it in new
  50. free programs, and that you know you can do these things.
  51.    To make sure that everyone has such rights, we have to forbid you to
  52. deprive anyone else of these rights.  For example, if you distribute
  53. copies of ispell, you must give the recipients all the rights that you
  54. have.  You must make sure that they, too, receive or can get the source
  55. code.  And you must tell them their rights.
  56.    Also, for our own protection, we must make certain that everyone
  57. finds out that there is no warranty for ispell.  If these programs are
  58. modified by someone else and passed on, we want their recipients to know
  59. that what they have is not what we distributed, so that any problems
  60. introduced by others will not reflect on our reputation.
  61.    The precise conditions of the licenses for ispell are found in the
  62. General Public Licenses.  The programs that are part of GNU Emacs are
  63. covered by the GNU Emacs copying terms (*note License:
  64. (emacs)License.), and other programs are covered by licenses that are
  65. contained in their source files.
  66. File: ispell.info,  Node: Emacs,  Next: Standalone,  Prev: License,  Up: Top
  67. Using ispell from emacs
  68. =======================
  69. * Menu:
  70. * Word::    Checking a single word
  71. * Buffer::    Checking a whole buffer
  72. * Region::    Checking a region
  73. * Old Emacs::    Using ispell with older versions of emacs
  74.         Look here if M-$ calls the old spell program in your emacs.
  75. File: ispell.info,  Node: Word,  Next: Buffer,  Prev: Emacs,  Up: Emacs
  76. Checking a single word
  77. ----------------------
  78.    The simplest emacs command for calling ispell is 'M-$' (meta-dollar.
  79. On some terminals, you must type ESC-$.) This checks the spelling of
  80. the word under the cursor.  If the word is found in the dictionary,
  81. then a message is printed in the echo area.  Otherwise, ISPELL attempts
  82. to generate near misses.
  83.    If any near misses are found, they are displayed in a separate
  84. window, each preceded by a digit.  If one of these is the word you
  85. wanted, just type its digit, and it will replace the original word in
  86. your buffer.
  87.    If no near miss is right, or if none are displayed, you have four
  88. choices:
  89.      Insert the word in your private dictionary.  Use this if you know
  90.      that the word is spelled correctly.
  91.      Accept the word for the duration of this editing session, but do
  92.      not put it in your private dictionary.  Use this if you are not
  93.      sure about the spelling of the word, but you do not want to look
  94.      it up immediately.  The next time you start ispell, it will have
  95.      forgotten any accepted words.  You can make it forget accepted
  96.      words at any time by typing `M-x reload-ispell'.
  97. `SPC'
  98.      Leave the word alone, and consider it misspelled if it is checked
  99.      again.
  100.      Replace the word.  This command prompts you for a string in the
  101.      minibuffer.  You may type more than one word, and each word you
  102.      type is checked again, possibly finding other near misses.  This
  103.      command provides a handy way to close in on a word that you have
  104.      no idea how to spell.  You can keep trying different spellings
  105.      until you find one that is close enough to get a near miss.
  106.      Lookup.  Display words from the dictionary that contain a
  107.      specified substring.  The substring is a regular expression, which
  108.      means it can contain special characters to be more selective about
  109.      which words get displayed.  *Note Regexps: (emacs)Regexps.
  110.      If the only special character in the regular express is a leading
  111.      `^', then a very fast binary search will be used, instead of
  112.      scanning the whole file.
  113.      Only a few matching words can be displayed in the ISPELL window.
  114.      If you want to see more, use the `look' program directly from the
  115.      shell.
  116.    Of course, you can also type
  117. G to stop the command without changing
  118. anything.
  119.    If you make a change that you don't like, just use emacs' normal undo
  120. feature *Note undo: (emacs)undo.
  121. File: ispell.info,  Node: Buffer,  Next: Region,  Prev: Word,  Up: Emacs
  122. Checking a whole buffer
  123. -----------------------
  124.    If you want to check the spelling of all the words in a buffer, type
  125. the command `M-x ispell'.  This command scans the file, and makes a
  126. list of all the misspelled words.  When it is done, it moves the cursor
  127. to the first word on the list, and acts like you just typed M-$ *Note
  128. Word::.
  129.    When you finish with one word, the cursor is automatically moved to
  130. the next.  If you want to stop in the middle of the list type `Q' or
  131. G'.  Later, you can pick up where you left off by typing `C-X $'.
  132. File: ispell.info,  Node: Region,  Next: Old Emacs,  Prev: Buffer,  Up: Emacs
  133. Checking a region
  134. -----------------
  135.    You may check the words in the region with the command M-x
  136. ispell-region.  See *Note mark: (emacs)mark.
  137.    The commands available are the same as for checking a whole buffer.
  138. File: ispell.info,  Node: Old Emacs,  Prev: Region,  Up: Emacs
  139. Old Emacs
  140. =========
  141.    Until ispell becomes part of the standard emacs distribution, you
  142. will have to explicitly request that it be loaded.  Put the following
  143. lines in your emacs init file *Note init file: (emacs)init file.
  144.      (autoload 'ispell "ispell" "Run ispell over buffer" t)
  145.      (autoload 'ispell-region "ispell" "Run ispell over region" t)
  146.      (autoload 'ispell-word "ispell" "Check word under cursor" t)
  147.      (define-key esc-map "$" 'ispell-word)
  148.    (It will do no harm to have these lines in your init file even after
  149. ispell is installed by default.)
  150. File: ispell.info,  Node: Standalone,  Next: Ask,  Prev: Emacs,  Up: Top
  151. Using ispell by itself
  152. ======================
  153.    To check the words in a file, give the command `ispell FILE'.  This
  154. will present a screen of information, and accept commands for every word
  155. that is not found in the dictionary.
  156.    The screen shows the offending word at the top, as well as two lines
  157. of context at the bottom.  If any near misses are found, they are shown
  158. in the middle of the screen, each preceded by a digit.
  159.    You may use the same commands as inside of emacs to accept the word,
  160. place it in your private dictionary, select a near miss, or type a
  161. replacement *Note Word::.  You may also choose from the following
  162. commands:
  163.      Print a help message.
  164.      Quit.  Accept the rest of the words in the file and exit.
  165.      Exit.  Abandon any changes made to this file and exit immediately.
  166.      You are asked if you are sure you want to do this.
  167.      Shell escape.  The shell command that you type is executed as a
  168.      subprocess.
  169.      Suspend.  On systems that support job control, this suspends
  170.      ISPELL.  On other systems it executes a subshell.
  171.      Redraw the screen.
  172.    If you type your interrupt character (usually
  173. C or DEL), then ispell
  174. will immediately enter its command loop.  If ispell was generating near
  175. misses at the time, then all that it had found so far will be
  176. displayed, along with a message stating that there might be more, and
  177. that you can type RET to generate them.  If it was scanning the file, it
  178. will display `(INTERRUPT)' where it would normally display a bad word,
  179. and the commands that change the file will be disabled.
  180.    The feature is handy if you have left out a space between words, and
  181. ispell is futilely looking up the 1000 potential near misses for a
  182. string that has twenty letters.
  183. File: ispell.info,  Node: Ask,  Next: Private,  Prev: Standalone,  Up: Top
  184. Using ispell to look up individual words
  185. ========================================
  186.    When ispell is run with no arguments, it reads words from the
  187. standard input.  For each one, it prints a message telling whether it
  188. is in the dictionary.  For any words not in the dictionary, near misses
  189. are computed, and any that are found are printed.
  190.      % ispell
  191.      word: independant
  192.      how about: independent
  193.      word: xyzzy
  194.      not found
  195.      word:
  196. File: ispell.info,  Node: Private,  Next: Compatibility,  Prev: Ask,  Up: Top
  197. Your private dictionary
  198. =======================
  199.    Whenever ispell is started the file `ispell.words' is read from your
  200. home directory (if it exists).  This file contains a list of words, one
  201. per line, and neither the order nor the case of the words is important.
  202. Ispell will consider all of the words good, and will use them as
  203. possible near misses.
  204.    The `I' command adds words to `ispell.words', so normally you don't
  205. have to worry about the file.  You may want to check it from time to
  206. time to make sure you have not accidentally inserted a misspelled word.
  207. File: ispell.info,  Node: Compatibility,  Next: Command summary,  Prev: Private,  Up: Top
  208. Compatibility with the traditional spell program
  209. ================================================
  210.    The `-u' flag tells ispell to be compatible with the traditional
  211. `spell' program.  This flag is automatically turned on if the program
  212. is invoked by the name `spell'.
  213.    This flag causes the following behavior:
  214.    All of the files listed as arguments (or the standard input if none)
  215. are checked, and misspellings are printed on the standard output.  The
  216. output is sorted, only one instance of each word appears (however, a
  217. word may appear more than once with different capitalizations.)
  218.    You may specify a file containing good words with `+filename'.
  219.    The troff commands `.so' and `.nx' (to include a file, or switch to
  220. a file, respectively) are obeyed, unless you give the flag `-i'.
  221.    The other `spell' flags `-v', `-b', `-x' and `-l' are ignored.
  222.    By the way, ispell seems to be about three times faster than
  223. traditional spell.
  224. File: ispell.info,  Node: Command summary,  Next: Near misses,  Prev: Compatibility,  Up: Top
  225. All commands in emacs and standalone modes
  226. ==========================================
  227.    Commands valid in both modes:
  228.    DIGIT    Select a near miss I    Insert into private dictionary
  229. A    Accept for this session SPACE    Skip this time R    Replace with one
  230. or more words L    Lookup: search the dictionary using a regular
  231. expression
  232.    Standalone only:
  233.    Q    Accept rest of file X    Abandon changes !    Shell escape ?    Help
  234. ^Z    Suspend ^L    Redraw screen ^C    Give up generating near misses, or
  235. show position in file
  236.    Emacs only:
  237.    M-$            Check word M-x ispell        Check buffer M-x ispell-region    Check
  238. region M-x reload-ispell    Reread private dictionary M-x
  239. kill-ispell        Kill current subprocess, and start a new one             next
  240. time ^G            When in M-x ispell, stop working on current             bad word list ^X
  241. $            Resume working on bad word list.
  242. File: ispell.info,  Node: Near misses,  Next: Arguments,  Prev: Command summary,  Up: Top
  243. Definition of a near miss
  244. =========================
  245.    Two words are near each other if they can be made identical with one
  246. of the following changes to one of the words:
  247.      Interchange two adjacent letters.
  248.      Change one letter.
  249.      Delete one letter.
  250.      Add one letter.
  251.    Someday, perhaps ispell will be extended so that words that sound
  252. alike would also be considered near misses.  If you would like to
  253. implement this, see Knuth, Volume 3, page 392 for a description of the
  254. Soundex algorithm which might apply.
  255. File: ispell.info,  Node: Arguments,  Next: Interface,  Prev: Near misses,  Up: Top
  256. Flags to the ispell command
  257. ===========================
  258.    Ispell's arguments are parsed by getopt(3).  Therefore, there is
  259. considerable flexibility about where to put spaces between arguments.
  260. The way to be safe is to give only one flag per dash, and put a space
  261. between a flag and its argument.
  262.    If ispell is run with no arguments, it enters `ask' mode *Note Ask::.
  263. With one or more file name arguments, it interactively checks each one.
  264. `-p privname'
  265.      Use privname as the private dictionary.
  266. `-d dictname'
  267.      Use dictname as the system dictionary.  You may also specify a
  268.      system dictionary with the environment variable ISPELL_DICTIONARY.
  269.      List mode.  Scan the file, and print any misspellings on the
  270.      standard output.  This mode is compatible with the traditional
  271.      spell program, except that the output is not sorted.  *Note
  272.      Compatibility::.
  273.      Compatibility mode. *Note Compatibility::.
  274.      Old style program interface, *Note Interface::.
  275.      New program interface, *Note Interface::.
  276.      Print the dictionary on the standard output with flags.
  277.      Print the dictionary on the standard output with all flags
  278.      expanded.
  279. File: ispell.info,  Node: Interface,  Next: Dictionary flags,  Prev: Arguments,  Up: Top
  280. How other programs can use ispell
  281. =================================
  282.    Ispell can be used as a subprocess communicating through a pipe.  Two
  283. interfaces are available:
  284. * Menu:
  285. * New interface::    New style, for EMACS
  286. * Old interface::    Old style, like ITS
  287. File: ispell.info,  Node: New interface,  Next: Old interface,  Prev: Interface,  Up: Interface
  288. New style, for EMACS
  289. ====================
  290.    To use this interface, start ispell with the '-S' flag.  Ispell will
  291. print a version number and greeting message that looks like:
  292.      (1 "ISPELL V4.0")=
  293.    The number is the version number of the protocol to be spoken over
  294. the pipe.  The string is a message possibly of interest to the user.
  295.    All messages from ispell end in an equal sign, and ispell guarantees
  296. not to print an equal sign except to end a message.  Therefore, if you
  297. do not want to deal with the greeting, just throw away characters until
  298. you get to an equals.
  299.    Ispell then reads one line commands from the standard input, and
  300. writes responses on the standard output.
  301.    If a command does not start with a colon, then it is considered a
  302. single word.  The word is looked up in the dictionary, and if it is
  303. found, the response is `t'.  If the word is not in the dictionary, and
  304. no near misses can be found, then the response is `nil'.  If there are
  305. near misses, the response is a line containing a list of strings in
  306. lisp form.  For example:
  307.        INPUT        OUTPUT     the        t     xxx        nil     teh        ("tea" "ten"
  308. "the")
  309.    The near miss response is suitable for passing directly to the lisp
  310. `read' function, but it can also be parsed simply in C.  In particular,
  311. ispell promises that the list will appear all on one line, and that the
  312. structure will not change.  A parser that reads the whole line, then
  313. treats the parentheses and quotes as whitespace will work fine.
  314.    The list will contain a maximum of ten strings, and each string will
  315. be no longer than 40 characters.  Also, the capitalization of the near
  316. misses is the same as the input word.
  317. Colon commands
  318. --------------
  319.    If the input line starts with a colon, then it is one of the
  320. following commands:
  321.    `:file FILENAME' Run the word checker over the named FILENAME.  The
  322. response is zero or more lines each containing a number.  The numbers
  323. are file offsets of words that do not appear in the dictionary.  Since
  324. the near miss checker is not run, this is fairly fast.
  325.    After the last number, there will be a line containing either `t' if
  326. the checker got to the end of the file, or `nil' if it received an
  327. interrupt.  If ispell ignores any interrupts received except while
  328. scanning a file.
  329.    `:insert WORD' Place WORD in the private dictionary.
  330.    `:accept WORD' Do not complain about WORD for the rest of the
  331. session.
  332.    `:dump' Write the private dictionary.
  333.    `:reload' Reread the private dictionary.
  334.    `:tex' Enable the tex parser for future `:file' commands.
  335.    `:troff' Enable the tex parser for future `:file' commands.
  336.    `:generic' Disable any text formatter parsers for future `:file'
  337. commands.
  338. File: ispell.info,  Node: Old interface,  Prev: New interface,  Up: Interface
  339. Old style, like ITS
  340. ===================
  341.    To use this interface, start ispell with the '-a' flag.  Ispell will
  342. read words from its standard input (one per line), and write a one line
  343. of output for each one.
  344.    If the first character of the line is `*', then word was found in the
  345. dictionary.  (Other versions of ispell made a distinction between words
  346. that were found directly, and words that were found after suffix
  347. removal.  These lines began with `+', followed by a space, then
  348. followed by the root word.  To remain compatible with these version,
  349. treat `+' and `*' the same.)
  350.    If the line starts with `&', then the input word was not found, but
  351. some near misses were found.  They are listed on the output line
  352. separated by spaces.  Also, the output words will have the same
  353. capitalization as the input.
  354.    Finally, if the line starts with `#', then the word was not in the
  355. dictionaries, and no near misses were found.
  356.        INPUT        OUTPUT     the        *     xxx        #     teh        & tea ten the
  357. File: ispell.info,  Node: Dictionary flags,  Next: History,  Prev: Interface,  Up: Top
  358. How the suffix stripper works
  359. =============================
  360.    This section is excerpted from the ITS spell.info file.
  361.    Words  in SPELL's main dictionary (but not the private dictionary)
  362. may have flags associated with  them  to  indicate  the  legality  of
  363. suffixes without  the  need  to keep the full suffixed words in the
  364. dictionary.  The flags have "names" consisting of single  letters.
  365. Their  meaning  is  as follows:
  366.    Let  #  and  @  be  "variables"  that can stand for any letter.
  367. Upper case letters are constants.  "..."  stands  for  any  string  of
  368. zero  or  more letters,  but note that no word may exist in the
  369. dictionary which is not at least 2 letters long, so, for example, FLY
  370. may not be produced  by  placing the  "Y"  flag  on "F".  Also, no flag
  371. is effective unless the word that it creates is at least 4 letters
  372. long,  so,  for  example,  WED  may  not  be produced by placing the
  373. "D" flag on "WE".
  374.    "V" flag:         ...E -> ...IVE  as in CREATE -> CREATIVE
  375. if # .ne. E, ...# -> ...#IVE  as in PREVENT -> PREVENTIVE
  376.    "N" flag:         ...E -> ...ION  as in CREATE -> CREATION
  377. ...Y -> ...ICATION  as in MULTIPLY -> MULTIPLICATION         if # .ne.
  378. E or Y, ...# -> ...#EN  as in FALL -> FALLEN
  379.    "X" flag:         ...E -> ...IONS  as in CREATE -> CREATIONS
  380. ...Y -> ...ICATIONS  as in MULTIPLY -> MULTIPLICATIONS         if #
  381. .ne. E or Y, ...# -> ...#ENS  as in WEAK -> WEAKENS
  382.    "H" flag:         ...Y -> ...IETH  as in TWENTY -> TWENTIETH
  383. if # .ne. Y, ...# -> ...#TH  as in HUNDRED -> HUNDREDTH
  384.    "Y" FLAG:         ... -> ...LY  as in QUICK -> QUICKLY
  385.    "G" FLAG:         ...E -> ...ING  as in FILE -> FILING         if #
  386. .ne. E, ...# -> ...#ING  as in CROSS -> CROSSING
  387.    "J" FLAG"         ...E -> ...INGS  as in FILE -> FILINGS         if
  388. # .ne. E, ...# -> ...#INGS  as in CROSS -> CROSSINGS
  389.    "D" FLAG:         ...E -> ...ED  as in CREATE -> CREATED         if
  390. @ .ne. A, E, I, O, or U,                 ...@Y -> ...@IED  as in IMPLY
  391. -> IMPLIED         if # .ne. E or Y, or (# = Y and @ = A, E, I, O, or U)
  392.                ...@# -> ...@#ED  as in CROSS -> CROSSED
  393.                 or CONVEY -> CONVEYED
  394.    "T" FLAG:         ...E -> ...EST  as in LATE -> LATEST         if @
  395. .ne. A, E, I, O, or U,                 ...@Y -> ...@IEST  as in DIRTY
  396. -> DIRTIEST         if # .ne. E or Y, or (# = Y and @ = A, E, I, O, or
  397. U)                 ...@# -> ...@#EST  as in SMALL -> SMALLEST
  398.                      or GRAY -> GRAYEST
  399.    "R" FLAG:         ...E -> ...ER  as in SKATE -> SKATER         if @
  400. .ne. A, E, I, O, or U,                 ...@Y -> ...@IER  as in MULTIPLY
  401. -> MULTIPLIER         if # .ne. E or Y, or (# = Y and @ = A, E, I, O,
  402. or U)                 ...@# -> ...@#ER  as in BUILD -> BUILDER
  403.                       or CONVEY -> CONVEYER
  404.    "Z FLAG:         ...E -> ...ERS  as in SKATE -> SKATERS         if @
  405. .ne. A, E, I, O, or U,                 ...@Y -> ...@IERS  as in
  406. MULTIPLY -> MULTIPLIERS         if # .ne. E or Y, or (# = Y and @ = A,
  407. E, I, O, or U)                 ...@# -> ...@#ERS  as in BUILD ->
  408. BUILDERS                                 or SLAY -> SLAYERS
  409.    "S" FLAG:         if @ .ne. A, E, I, O, or U,                 ...@Y
  410. -> ...@IES  as in IMPLY -> IMPLIES         if # .eq. S, X, Z, or H,
  411.            ...# -> ...#ES  as in FIX -> FIXES         if # .ne. S, X,
  412. Z, H, or Y, or (# = Y and @ = A, E, I, O, or U)                 ...# ->
  413. ...#S  as in BAT -> BATS                                 or CONVEY ->
  414. CONVEYS
  415.    "P" FLAG:         if @ .ne. A, E, I, O, or U,                 ...@Y
  416. -> ...@INESS  as in CLOUDY -> CLOUDINESS         if # .ne. Y, or @ = A,
  417. E, I, O, or U,                 ...@# -> ...@#NESS  as in LATE ->
  418. LATENESS                                 or GRAY -> GRAYNESS
  419.    "M" FLAG:         ... -> ...'S  as in DOG -> DOG'S
  420.    Note:    The  existence of a flag on a root word in the directory is
  421. not by itself sufficient to cause SPELL to recognize the  indicated
  422. word  ending.  If there is more than one root for which a flag will
  423. indicate a given word, only  one  of the roots is the correct one for
  424. which the flag is effective; generally it is the longest root.  For
  425. example, the "D" rule  implies  that either PASS or PASSE, with a "D"
  426. flag, will yield PASSED.  The flag must be on  PASSE;  it  will  be
  427. ineffective on PASS.  This is because, when SPELL encounters the word
  428. PASSED and fails to  find  it  in  its  dictionary,  it strips off the
  429. "D" and looks up PASSE.  Upon finding PASSE, it then accepts PASSED  if
  430. and  only if PASSE has the "D" flag.  Only if the word PASSE is not in
  431. the main dictionary at all does the program strip off  the  "E"  and
  432. search  for PASS.
  433.    Therefore, never install a flag by hand.  Instead, just add complete
  434. new words to the dictionary file, then use the build program with the
  435. options '-a -r' to replace as many roots with flags as possible.
  436. File: ispell.info,  Node: History,  Prev: Dictionary flags,  Up: Top
  437. Where it came from
  438. ==================
  439.    I first came across ispell on TOPS-20 systems at MIT.  I tracked it
  440. down to ITS where I found the PDP-10 assembly program.  It appeared
  441. that it had been in use at the MIT-AI lab since at least the late
  442. 1970's.  I think it case from California before then.
  443.    I wrote the first C implementation in the spring of 1983, mostly
  444. working from the ITS INFO file.
  445.    The present version was created in early 1988, and was motivated by
  446. the desire to make it run on 80286's, and to provide a better interface
  447. for GNU EMACS.
  448.    There is another widely distributed version of ispell, which was
  449. forked from my 1983 version and has a different set of features and
  450. clever extensions.  It is available from the directory /u/public/ispell
  451. at celray.cs.yale.edu.
  452.    People who have contributed to various versions of ispell include:
  453. Walt Buehring, Mark Davies, Geoff Kuenning, Rober McQueer, Ashwin Ram,
  454. Greg Schaffer, Perry Smith, Ken Stevens, and Andrew Vignaux.
  455. Pace Willisson
  456. pace@ai.mit.edu  pace@hx.lcs.mit.edu
  457. (617) 625-3452
  458. Tag Table:
  459. Node: Top
  460. Node: License
  461. Node: Emacs
  462. Node: Word
  463. Node: Buffer
  464. Node: Region
  465. Node: Old Emacs
  466. Node: Standalone
  467. Node: Ask
  468. Node: Private
  469. 10511
  470. Node: Compatibility
  471. 11158
  472. Node: Command summary
  473. 12198
  474. Node: Near misses
  475. 13110
  476. Node: Arguments
  477. 13728
  478. Node: Interface
  479. 15020
  480. Node: New interface
  481. 15368
  482. Node: Old interface
  483. 18156
  484. Node: Dictionary flags
  485. 19221
  486. Node: History
  487. 24178
  488. End Tag Table
  489.