# HG changeset patch # User Kenichi Handa # Date 1065512002 0 # Node ID 482664d12a27e3bcaa7351e310d31d0301a57f1d # Parent 1a813cb591b26c74c24ee8c62899b0756ebd9dd7 (autoload-coding-system): Add SYMBOL to coding-system-alist. diff -r 1a813cb591b2 -r 482664d12a27 lisp/international/mule.el --- a/lisp/international/mule.el Tue Oct 07 06:46:04 2003 +0000 +++ b/lisp/international/mule.el Tue Oct 07 07:33:22 2003 +0000 @@ -1123,7 +1123,9 @@ "Define SYMBOL as a coding-system that is defined on demand. FROM is a form to evaluate to define the coding-system." - (put symbol 'coding-system-define-form form)) + (put symbol 'coding-system-define-form form) + (setq coding-system-alist (cons (list (symbol-name symbol)) + coding-system-alist))) (defun set-buffer-file-coding-system (coding-system &optional force) "Set the file coding-system of the current buffer to CODING-SYSTEM.