home *** CD-ROM | disk | FTP | other *** search
/ Mega CD-ROM 1 / megacd_rom_1.zip / megacd_rom_1 / FREEMACS / EMACS16A.ZIP / SPELLER.MIN < prev    next >
Text File  |  1989-11-14  |  664b  |  30 lines

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