diff lisp/textmodes/sgml-mode.el @ 89483:2f877ed80fa6

*** empty log message ***
author Kenichi Handa <handa@m17n.org>
date Mon, 08 Sep 2003 12:53:41 +0000
parents 375f2633d815 8fb7bc8f8acc
children 68c22ea6027c
line wrap: on
line diff
--- a/lisp/textmodes/sgml-mode.el	Mon Sep 08 11:56:09 2003 +0000
+++ b/lisp/textmodes/sgml-mode.el	Mon Sep 08 12:53:41 2003 +0000
@@ -111,8 +111,6 @@
         (define-key map "\"" 'sgml-name-self))
       (when (memq ?' sgml-specials)
         (define-key map "'" 'sgml-name-self)))
-    (define-key map (vector (make-char 'latin-iso8859-1))
-      'sgml-maybe-name-self)
     (let ((c 127)
 	  (map (nth 1 map)))
       (while (< (setq c (1+ c)) 256)
@@ -208,7 +206,7 @@
   (let ((table (make-char-table 'sgml-table))
 	(i 32)
 	elt)
-    (while (< i 256)
+    (while (< i 128)
       (setq elt (aref sgml-char-names i))
       (if elt (aset table (make-char 'latin-iso8859-1 i) elt))
       (setq i (1+ i)))