lisp/my-dict.el
changeset 1 a234a7579958
equal deleted inserted replaced
0:df7496e40bee 1:a234a7579958
       
     1 ;;; ISpell configuration
       
     2 (setq ispell-local-dictionary-alist
       
     3       (append ispell-local-dictionary-alist
       
     4 	      (quote ("francais-intl"
       
     5 		      "[A-Za-zÀÂÆÇÈÉÊËÎÏÔÙÛÜŒÑæàâçèéêëîïôùûüœñ]" 
       
     6 		      "[^A-Za-zÆÀÂÇÈÉÊËÎÏÔÙÛÜÑŒæàâçèéêëîïôùûüœñ]"
       
     7 		      "[-']"
       
     8 		      nil 
       
     9 		      ("-d" "french") 
       
    10 		      "~list" iso-8859-15))))
       
    11 
       
    12 (provide 'my-dict)