home *** CD-ROM | disk | FTP | other *** search
/ Mega CD-ROM 1 / megacd_rom_1.zip / megacd_rom_1 / FREEMACS / CONTRIB.ZIP / SPELLER.MIN < prev    next >
Text File  |  1990-03-09  |  732b  |  32 lines

  1. Add words to the speller, and write the changed speller to disk.
  2.  
  3. Name:U:add-word
  4. Add the word to the left of point to the dictionary.
  5. [*]#(g?,##(sc,,2),0,(
  6.     #(ds,temp,##(rm,-))
  7.     #(mp,temp,,(,),(;),.,!,##(bc,41,d,a))
  8.     #(==,##(temp),,(
  9.         #(pm,1)
  10.         #(sm,0)
  11.         #(sp,-)
  12.         #(ds,temp,##(rm,{))
  13.         #(mp,temp,,0,1,2,3,4,5,6,7,8,9)
  14.         #(==,##(temp),,,(
  15.             #(==,#(sc,##(temp),1),0,(
  16.             #(Fmessage,##(temp) added to the dictionary)
  17.         ),(
  18. #(Ferror,Error occurred while trying to add to dictionary)
  19.         ))))
  20.         #(sp,0)
  21.         #(pm)
  22.     ))
  23. ),(
  24.     #(Ferror,Speller not installed)
  25. ))[*]
  26.  
  27. Name:U:save-dictionary
  28. Save the dictionary in mydict.com.
  29. [*]#(sc,#(env.EMACS)mydict.com,3)
  30. #(an,Dictionary saved as #(env.EMACS)mydict.com)
  31. [*]
  32.