Mercurial > emacs
changeset 20101:1920690627a2
Add autoloads for `8859-1-map'.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 21 Oct 1997 03:06:34 +0000 |
parents | 0db4553d47cc |
children | c00f010468c2 |
files | lisp/international/iso-insert.el |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/international/iso-insert.el Tue Oct 21 03:04:39 1997 +0000 +++ b/lisp/international/iso-insert.el Tue Oct 21 03:06:34 1997 +0000 @@ -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)