mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 05:17:35 +00:00
Add autoloads for `8859-1-map'.
This commit is contained in:
parent
98d5aafec1
commit
e01abb7d50
1 changed files with 5 additions and 0 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue