Add autoloads for `8859-1-map'.

This commit is contained in:
Karl Heuer 1997-10-21 03:06:34 +00:00
parent 98d5aafec1
commit e01abb7d50

View file

@ -29,6 +29,10 @@
;;; Code:
;;; Provide some binding for startup:
;;;###autoload (define-key global-map "\C-x8" '8859-1-map)
;;;###autoload (autoload '8859-1-map "iso-insert" "Keymap for ISO 8859/1 character insertion." t 'keymap)
(defun insert-no-break-space ()
(interactive "*")
(insert 160)
@ -623,6 +627,7 @@
(if (not (lookup-key global-map "\C-x8"))
(define-key global-map "\C-x8" 8859-1-map))
)
(defalias '8859-1-map 8859-1-map)
(provide 'iso-insert)