Warning: this is an htmlized version!
The original is here, and
the conversion rules are here.
;; This file:
;;   http://angg.twu.net/.emacs.unibyte.html
;;   http://angg.twu.net/.emacs.unibyte
;;           (find-angg ".emacs.unibyte")
;; Author: Eduardo Ochs <eduardoochs@gmail.com>
;;
;; (load (buffer-file-name))
;; (defun e () (interactive) (find-angg ".emacs.unibyte"))

;; «.ee-tag-re»	(to "ee-tag-re")
;; «.unaccent»	(to "unaccent")
;; «.fossils»	(to "fossils")



;; «ee-tag-re»  (to ".ee-tag-re")
;; (find-angg ".emacs" "ee-tag-re")
;; (eek "M-h M-k  M-h M-w  ;; ee-copy-this-line-to-kill-ring")
;; (find-efunction 'ee-copy-this-line-to-kill-ring)
;; (find-efunction 'ee-copy-preceding-tag-to-kill-ring)
;; (find-efunction 'ee-tag-re)
;; (find-eev "eev-codings.el" "ee-tolatin1-re")
;;
(setq  ee-tag-re-raw-text "«\\([!-~]+\\)»")
(defun ee-tag-re ()
  (let ((bfcs buffer-file-coding-system))
    (cond ((eq bfcs 'raw-text-unix) ee-tag-re-raw-text)
	  (t                        ee-tag-re-utf-8))))


;; «unaccent»  (to ".unaccent")
;; (find-blogmefile "blogme2-outer.lua" "unaccent_from, unaccent_to =")
;; (find-efunction 'translate-region)
;; (find-node "(recode)Concept Index")
(defun unaccent (s e)
  (interactive "r")
  (let ((coding-system-for-read 'latin-1-unix)
        (coding-system-for-write 'latin-1-unix))
    (shell-command-on-region
     s e
     (concat "tr 'ÀÁÂÃÄÅÇÈÉÊËÃÍŒÏÑÒÓÔÕÖÿÙÚÛÜ›àáâãäåçèéêëìíîïñòóôõö¯ùúûü˝'"
	     "   'AAAAAACEEEEIIIINOOOOOOUUUUYaaaaaaceeeeiiiinoooooouuuuy'")
     nil t)))


;; «fossils»  (to ".fossils")
;; From: (find-es "emacs" "iso-accents")

(defun iso-math () (interactive)
  (if iso-accents-mode (iso-accents-mode 0)
    (iso-accents-by-strings "math850"
			    "'aáeéiíoóuúAÁEÉIÍOÓUÚcçCÇ<«>»"
			    "^aâeêoôuûAÂEÊOÔ"
			    "`aàeèiìoòuùAÀEÈOÒUÙ"
			    "~aãoõAÃOÕ"
			    "\"aäeëiïoöuüAÄOÖUÜ")))

(defalias 'iso- 'iso-math)
;;; Two important fossils: my original definitions for iso-math and
;; iso-alt-list; the present ones may not be working correctly (I'm in
;; the middle of the conversion from math850 to latinmath).
;;
'(defun iso-math () (interactive)
  (if iso-accents-mode (iso-accents-mode 0)
    (iso-accents-by-strings "math850"
			    "'a†eÇi°o¢u£AµEêIÖOàUécáCÄ<Æ>Ø"
			    "^aÉeàoìuñA⊃EÒOâ"
			    "`aÖeäiçoïuóA∑EÔOãUë"
			    "~aÆoäAÇOå"
			    "\"aÑeâiãoîuÅAéOôUö")))
'(setq iso-alt-list
  '("&&" ?• "--" ?ª "-1" ?ü "-o" ?˜ ".." ?ö "/O" ?ù "88" ?ò "<<" ?Æ
    ">=" ?∏ ">>" ?Ø "AE" ?í "CC" ?Ä "In" ?è "NN" ?• "Om" ?ò "PP" ?ç
    "TT" ?õ "_a" ?¶ "_o" ?ß "ae" ?ë "am" ? "bf" ? "bl" ? "bo" ?©
    "bq" ?å "ca" ?fi "cc" ?á "cu" ?ç "dd" ? "ee" ? "ex" ?í "fa" ?ì
    "in" ?× "ka" ?Ü "ku" ?Ó "la" ? "ll" ?– "lo" ?∨ "na" ?® "nn" ?§
    "nu" ?ê "o+" ?æ "oo" ?Ω "ot" ? "ox" ?Ï "pa" ?ÿ "pe" ?Ñ "pp" ?è
    "ro" ? "ss" ?á "te" ? "to" ? "xx" ?û))






;; Local Variables:
;; mode:                 emacs-lisp
;; coding:               raw-text-unix
;; End: