]> code.delx.au - gnu-emacs/blobdiff - lisp/international/iso-insert.el
(auto-mode-alist): Add snmp-mode patterns.
[gnu-emacs] / lisp / international / iso-insert.el
index 3005246bd06fe6d98b4db33d0da9eae32e324571..0b76fe1ea2db76b9c557db6f926c827f2c4d91d8 100644 (file)
@@ -1,6 +1,6 @@
 ;;; iso-insert.el --- insert functions for ISO 8859/1.
 
-;; Copyright (C) 1987 Free Software Foundation, Inc.
+;; Copyright (C) 1987, 1994 Free Software Foundation, Inc.
 
 ;; Author: Howard Gayle
 ;; Maintainer: FSF
@@ -19,8 +19,9 @@
 ;; GNU General Public License for more details.
 
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to
-;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+;; along with GNU Emacs; see the file COPYING.  If not, write to the
+;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;; Boston, MA 02111-1307, USA.
 
 ;;; Commentary:
 
 
 ;;; 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)
    (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)