Oz> When Ispell (ispell-buffer) detects misspelled word under emacs it Oz> fails. I get the following message: Oz> Oz> Ispell misalignment: word 'xxx' point 116; please retry Oz> Oz> Any one has any idea why and how it can be fixed. -Thanks Oz --
??? My box used to be a non-debian and is debian now (emacs-x 19.28, ispell 3-18.1) and it works as it did before. Regarding ispell, I have this in my ~/.emacs file (actually an .elc file loaded by ~/.emacs): ;; --- for ispell.el and the ispell 3.1 executable (autoload 'ispell-word "ispell" "Check the spelling of word in buffer." t) (global-set-key "\e$" 'ispell-word) (autoload 'ispell-region "ispell" "Check the spelling of region." t) (autoload 'ispell-buffer "ispell" "Check the spelling of buffer." t) (autoload 'ispell-complete-word "ispell" "Look up current word in dictionary and try to complete it." t) (autoload 'ispell-change-dictionary "ispell" "Change ispell dictionary." t) (autoload 'ispell-message "ispell" "Check spelling of mail message or news post.") ;; Hope this helps, -- Dirk Eddelbuettel <[EMAIL PROTECTED]>

