1 ;;; Automatic choice of encoding for CLISP sources -*- Emacs-Lisp -*-
2 ;;; Load this file from ~/.emacs or ~/.emacs.el
3 ;;; Tested with Emacs 20 with Mule-UCS, Emacs 21
5 ;; All the *.d and *.lisp sources are in UTF-8 encoding.
6 (modify-coding-system-alist 'file
"\\.\\(d\\|lisp\\)\\'" 'utf-8
)
8 ;; For CLISP in `inferior-lisp-mode' under win32
9 (modify-coding-system-alist 'process
"lisp" 'unix
)