24/09/28 10:48:53.14 .net
emacsで変換を抑止するには
(let ((table (make-translation-table-from-alist
'((#x301c . #x301c) (#xff5e . #xff5e))) ))
(mapc
(lambda (coding-system)
(coding-system-put coding-system :decode-translation-table table)
(coding-system-put coding-system :encode-translation-table table)
)
'(utf-8 cp932)))
かな