aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-06-18 19:04:09 +0000
committerStefan Monnier2001-06-18 19:04:09 +0000
commitf7ac3e2885f9090a3753975981ac0e7ef5e95ff4 (patch)
tree18dabef33cce81e7c5b300b043067a22ab764e37
parenta19e85cced1845cc51aedc752e0e7f934e95237d (diff)
downloademacs-f7ac3e2885f9090a3753975981ac0e7ef5e95ff4.tar.gz
emacs-f7ac3e2885f9090a3753975981ac0e7ef5e95ff4.zip
(sgml-mode-map): Fix thinko.
-rw-r--r--lisp/ChangeLog31
-rw-r--r--lisp/textmodes/sgml-mode.el3
2 files changed, 21 insertions, 13 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 609855b7a9c..05e2ba7c9e4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,7 +1,11 @@
12001-06-18 Stefan Monnier <monnier@cs.yale.edu>
2
3 * textmodes/sgml-mode.el (sgml-mode-map): Fix thinko.
4
12001-06-18 Gerd Moellmann <gerd@gnu.org> 52001-06-18 Gerd Moellmann <gerd@gnu.org>
2 6
3 * international/quail.el (quail-start-conversion): Reset 7 * international/quail.el (quail-start-conversion):
4 quail-translating to nil. 8 Reset quail-translating to nil.
5 9
6 * antlr-mode.el (antlr-mode): Check that `c-Java-access-key' is 10 * antlr-mode.el (antlr-mode): Check that `c-Java-access-key' is
7 bound. Suggested by David B. Malkovsky <David.Malkovsky@sas.com>. 11 bound. Suggested by David B. Malkovsky <David.Malkovsky@sas.com>.
@@ -27,8 +31,8 @@
27 * textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to 31 * textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to
28 mouse-highlighted text. 32 mouse-highlighted text.
29 33
30 * textmodes/page-ext.el (pages-copy-header-and-position): Add 34 * textmodes/page-ext.el (pages-copy-header-and-position):
31 help-echo to mouse-highlighted text. 35 Add help-echo to mouse-highlighted text.
32 36
33 * tar-mode.el (tar-header-block-summarize): Add help-echo to 37 * tar-mode.el (tar-header-block-summarize): Add help-echo to
34 mouse-highlighted text. 38 mouse-highlighted text.
@@ -41,20 +45,19 @@
41 * progmodes/cpp.el (cpp-make-button): Add help-echo to 45 * progmodes/cpp.el (cpp-make-button): Add help-echo to
42 mouse-highlighted text. 46 mouse-highlighted text.
43 47
44 * progmodes/compile.el (compile-reinitialize-errors): Add 48 * progmodes/compile.el (compile-reinitialize-errors):
45 help-echo to mouse-highlighted messages. 49 Add help-echo to mouse-highlighted messages.
46 (compilation-forget-errors): Remove help-echo property as well. 50 (compilation-forget-errors): Remove help-echo property as well.
47 51
48 * play/landmark.el (lm-plot-square, lm-init-display): Add 52 * play/landmark.el (lm-plot-square, lm-init-display):
49 help-echo to mouse-highlighted text. 53 Add help-echo to mouse-highlighted text.
50 54
51 * play/gomoku.el (gomoku-plot-square, gomoku-init-display): Add 55 * play/gomoku.el (gomoku-plot-square, gomoku-init-display):
52 help-echo to mouse-highlighted text. 56 Add help-echo to mouse-highlighted text.
53 57
54 * dired.el (dired-insert-set-properties): Add help-echo to 58 * dired.el (dired-insert-set-properties): Add help-echo to
55 mouse-highlighted text. 59 mouse-highlighted text.
56 (dired-mark-pop-up): Remove help-echo property from the file 60 (dired-mark-pop-up): Remove help-echo property from the file name.
57 name.
58 61
59 * comint.el (comint-send-input): Add help-echo to 62 * comint.el (comint-send-input): Add help-echo to
60 mouse-highlighted text. 63 mouse-highlighted text.
@@ -247,6 +250,10 @@
247 `rmail-insert-mime-resent-message-function' if `rmail-enable-mime' 250 `rmail-insert-mime-resent-message-function' if `rmail-enable-mime'
248 is non-nil. 251 is non-nil.
249 252
2532001-05-30 Stefan Monnier <monnier@rum.cs.yale.edu>
254
255 * textmodes/tex-mode.el (latex-find-indent): Handle the BOBP case.
256
2502001-05-29 Sam Steingold <sds@gnu.org> 2572001-05-29 Sam Steingold <sds@gnu.org>
251 258
252 * faces.el (face-valid-attribute-values): Bind `valid' directly 259 * faces.el (face-valid-attribute-values): Bind `valid' directly
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el
index d06885d0c7e..d307ebe76ea 100644
--- a/lisp/textmodes/sgml-mode.el
+++ b/lisp/textmodes/sgml-mode.el
@@ -106,7 +106,8 @@ This takes effect when first loading the sgml-mode library.")
106 (define-key map "\"" 'sgml-name-self)) 106 (define-key map "\"" 'sgml-name-self))
107 (if (memq ?' sgml-specials) 107 (if (memq ?' sgml-specials)
108 (define-key map "'" 'sgml-name-self)))) 108 (define-key map "'" 'sgml-name-self))))
109 (define-key map (make-char 'latin-iso8859-1) 'sgml-maybe-name-self) 109 (define-key map (vector (make-char 'latin-iso8859-1))
110 'sgml-maybe-name-self)
110 (define-key map [menu-bar sgml] (cons "SGML" menu-map)) 111 (define-key map [menu-bar sgml] (cons "SGML" menu-map))
111 (define-key menu-map [sgml-validate] '("Validate" . sgml-validate)) 112 (define-key menu-map [sgml-validate] '("Validate" . sgml-validate))
112 (define-key menu-map [sgml-name-8bit-mode] 113 (define-key menu-map [sgml-name-8bit-mode]