Function: autoload-coding-system

autoload-coding-system is a byte-compiled function defined in mule.el.gz.

Signature

(autoload-coding-system SYMBOL FORM)

Documentation

Define SYMBOL as a coding-system that is defined on demand.

FORM is a form to evaluate to define the coding-system.

Source Code

;; Defined in /usr/src/emacs/lisp/international/mule.el.gz
(defun autoload-coding-system (symbol form)
  "Define SYMBOL as a coding-system that is defined on demand.

FORM is a form to evaluate to define the coding-system."
  (put symbol 'coding-system-define-form form)
  (setq coding-system-alist (cons (list (symbol-name symbol))
				  coding-system-alist))
  (dolist (elt '("-unix" "-dos" "-mac"))
    (let ((name (concat (symbol-name symbol) elt)))
      (put (intern name) 'coding-system-define-form form)
      (setq coding-system-alist (cons (list name) coding-system-alist)))))