>>> "JMM" == Juan Manuel MacĂ­as writes: Hi Juan > Sorry for the offtopic, but I thought this homemade function I wrote > some time ago for my work might perhaps be useful to some Orgers. When > executed in a buffer, the `list-non-latin-chars' function opens a window > displaying a list of all the non (basic) Latin characters present in > that document. Each item in the list contains the character, its Unicode > canonical name, and its hexadecimal code. For example: Very very nice, Till now I used only a very simple search function (defun my-search-no-ascii () "Simple function to search for no ASCII symbols in a file." (interactive) (skip-chars-forward "\001-\177")) That is so much better!