Salut à tous !
Bon, j’ai finalement réussit à obtenir un message d’erreur, donc j’avance :
error SIGPIPE raised on process ispell
Sauf erreur de ma part, cela indique qu’il y a tentative d’écrire dans
pipe alors qu’il manque un processus associé à la fin de ce
pipe, un peu comme s’il n’y avait tout simplement aucun processus Ispell (en fait Hunspell). Je me suis posé la question de savoir ce qui se trouve sur mon système :
$ which hunspell
/usr/bin/hunspell
$ which ispell
/usr/bin/which: no ispell in (/home/yoann/scriptsEDF:/usr/local/Imagine++/bin:/usr/local/Imagine++/bin:/home/yoann/scriptsEDF:/usr/local/Imagine++/bin:/usr/local/Imagine++/bin:/usr/lib64/mpich2/bin:/usr/lib64/ccache:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/yoann/.local/bin:/home/yoann/bin)
Du coup, j’ai ajouté les lignes suivantes à mon fichier « .emacs » :
;; Hunspell comme correcteur grammatical.
(if (file-exists-p "/usr/bin/hunspell")
(progn
(setq ispell-program-name "hunspell")
(eval-after-load "ispell"
'(progn (defun ispell-get-coding-system () 'utf-8)))))
Malheureusement, cela n’a rien changé. Je sèche, mais peut-être quelqu’un a-t-il une idée pour débloquer la situation. Je me demande si installer Ispell serait une bonne idée, dans la mesure où je ne veux justement pas l’utiliser…
À bientôt.
Le Farfadet Spatial