lisp/my-dict.el
changeset 1 a234a7579958
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lisp/my-dict.el	Thu Oct 13 08:46:42 2011 -0400
@@ -0,0 +1,12 @@
+;;; ISpell configuration
+(setq ispell-local-dictionary-alist
+      (append ispell-local-dictionary-alist
+	      (quote ("francais-intl"
+		      "[A-Za-zÀÂÆÇÈÉÊËÎÏÔÙÛÜŒÑæàâçèéêëîïôùûüœñ]" 
+		      "[^A-Za-zÆÀÂÇÈÉÊËÎÏÔÙÛÜÑŒæàâçèéêëîïôùûüœñ]"
+		      "[-']"
+		      nil 
+		      ("-d" "french") 
+		      "~list" iso-8859-15))))
+
+(provide 'my-dict)