;; extending ISO 8859 Latin 1 support. ;; Also: really need some way to insert ;; Content-Type: text/plain; charset=ISO-8859-LATIN-1 ;; Transfer-Type: 8-bit ;; or something similar ;; in message headers if composed in iso-accents-mode. (require 'iso-acc) (setq iso-accents-list ; for the rest of this list, see iso-acc.el (append ; in the main emacs lisp directory. (list '((?\/ ?c) ?\242) ; ¢ cents '((?\/ ?L) ?\243) ; £ Pound sterling. '((?\/ ?0) ?\244) ; ¤ generic currency '((?\/ ?V) ?\245) ; ¥ Yen '((?\/ ?|) ?\246) ; ¦ broken vertical bar '((?\/ ?S) ?\247) ; § section '((?\/ ?C) ?\251) ; © copyright '((?\" ?0) ?\252) ; ª feminine ordinal indicator '((?\~ ?0) ?\272) ; º masculine ordinal indicator '((?\~ ?-) ?\254) ; ¬ logicians' not '((?\~ ?_) ?\255) ; ­ soft hyphen '((?\/ ?R) ?\256) ; ® registered '((?\/ ?_) ?\257) ; ¯ macron (a sort of raised bar) '((?\/ ?-) ?\261) ; ± +/- '((?^ ?1) ?\271) ; ¹ superscript 1 '((?^ ?2) ?\262) ; ² superscript 2 '((?^ ?3) ?\263) ; ³ superscript 3 '((?\/ ?m) ?\265) ; µ micro '((?\/ ?P) ?\266) ; ¶ paragraph marker (pilcrow) '((?\/ ?.) ?\267) ; · centred dot '((?\/ ?4) ?\274) ; ¼ quarter '((?\/ ?2) ?\275) ; ½ half '((?\~ ?4) ?\276) ; ¾ 3/4 '((?\/ ?x) ?\327) ; × times sign '((?\" ?-) ?\367)) ; ÷ division/subtraction (depends on culture) iso-accents-list))