mkogg.py: Fix 'self.get_mp4_metadata(self, source)'
[blog.git] / posts / Emacs_and_aspell_spelling_II.mdwn
1 [[!meta  title="Emacs and aspell/spelling II"]]
2 [[!meta  date="2008-09-05 02:42:26"]]
3
4 Update on [[my earlier post|Emacs_and_aspell_spelling]].  It seems
5 that there are bugs running `aspell` on UTF-8 code via `ispell.el`.
6
7 For example, with the configuration I listed in my first post, running
8 `M-x ispell` on a buffer containing
9
10     Grüß Gott       <- misspelled English with UTF-8 chars
11     “aBx”           <- misspelled English inside UTF-8 quotes
12
13 produced an error
14
15     Ispell misalignment: word `BaBx' point 58; probably incompatible versions
16
17 when aspell caught on “aBx”.
18
19 This seems to have been a problem for a while ([2003 bug report][bug]
20 and a [possible 2005 patch][patch] against the [2003
21 ispell.el-3.7beta][beta]), but I don't know enough about emacs to want
22 to go that deep.  For now I will just run `aspell -v <my-file>` from
23 another terminal and revisit the file from emacs afterwards, or I will
24 highlight non-UTF-8 areas and `ispell` them seperately.
25
26 [bug]: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=205516
27 [patch]: http://sourceforge.net/tracker/index.php?func=detail&aid=945391&group_id=245&atid=300245
28 [beta]: http://www.kdstevens.com/stevens/ispell-page.html
29
30 [[!tag tags/linux]]
31 [[!tag tags/emacs]]