mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-27 10:54:40 +00:00
(sgml-mode-map): Fix thinko.
This commit is contained in:
parent
a19e85cced
commit
f7ac3e2885
@ -1,7 +1,11 @@
|
|||||||
|
2001-06-18 Stefan Monnier <monnier@cs.yale.edu>
|
||||||
|
|
||||||
|
* textmodes/sgml-mode.el (sgml-mode-map): Fix thinko.
|
||||||
|
|
||||||
2001-06-18 Gerd Moellmann <gerd@gnu.org>
|
2001-06-18 Gerd Moellmann <gerd@gnu.org>
|
||||||
|
|
||||||
* international/quail.el (quail-start-conversion): Reset
|
* international/quail.el (quail-start-conversion):
|
||||||
quail-translating to nil.
|
Reset quail-translating to nil.
|
||||||
|
|
||||||
* antlr-mode.el (antlr-mode): Check that `c-Java-access-key' is
|
* antlr-mode.el (antlr-mode): Check that `c-Java-access-key' is
|
||||||
bound. Suggested by David B. Malkovsky <David.Malkovsky@sas.com>.
|
bound. Suggested by David B. Malkovsky <David.Malkovsky@sas.com>.
|
||||||
@ -27,8 +31,8 @@
|
|||||||
* textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to
|
* textmodes/tex-mode.el (tex-validate-buffer): Add help-echo to
|
||||||
mouse-highlighted text.
|
mouse-highlighted text.
|
||||||
|
|
||||||
* textmodes/page-ext.el (pages-copy-header-and-position): Add
|
* textmodes/page-ext.el (pages-copy-header-and-position):
|
||||||
help-echo to mouse-highlighted text.
|
Add help-echo to mouse-highlighted text.
|
||||||
|
|
||||||
* tar-mode.el (tar-header-block-summarize): Add help-echo to
|
* tar-mode.el (tar-header-block-summarize): Add help-echo to
|
||||||
mouse-highlighted text.
|
mouse-highlighted text.
|
||||||
@ -41,20 +45,19 @@
|
|||||||
* progmodes/cpp.el (cpp-make-button): Add help-echo to
|
* progmodes/cpp.el (cpp-make-button): Add help-echo to
|
||||||
mouse-highlighted text.
|
mouse-highlighted text.
|
||||||
|
|
||||||
* progmodes/compile.el (compile-reinitialize-errors): Add
|
* progmodes/compile.el (compile-reinitialize-errors):
|
||||||
help-echo to mouse-highlighted messages.
|
Add help-echo to mouse-highlighted messages.
|
||||||
(compilation-forget-errors): Remove help-echo property as well.
|
(compilation-forget-errors): Remove help-echo property as well.
|
||||||
|
|
||||||
* play/landmark.el (lm-plot-square, lm-init-display): Add
|
* play/landmark.el (lm-plot-square, lm-init-display):
|
||||||
help-echo to mouse-highlighted text.
|
Add help-echo to mouse-highlighted text.
|
||||||
|
|
||||||
* play/gomoku.el (gomoku-plot-square, gomoku-init-display): Add
|
* play/gomoku.el (gomoku-plot-square, gomoku-init-display):
|
||||||
help-echo to mouse-highlighted text.
|
Add help-echo to mouse-highlighted text.
|
||||||
|
|
||||||
* dired.el (dired-insert-set-properties): Add help-echo to
|
* dired.el (dired-insert-set-properties): Add help-echo to
|
||||||
mouse-highlighted text.
|
mouse-highlighted text.
|
||||||
(dired-mark-pop-up): Remove help-echo property from the file
|
(dired-mark-pop-up): Remove help-echo property from the file name.
|
||||||
name.
|
|
||||||
|
|
||||||
* comint.el (comint-send-input): Add help-echo to
|
* comint.el (comint-send-input): Add help-echo to
|
||||||
mouse-highlighted text.
|
mouse-highlighted text.
|
||||||
@ -247,6 +250,10 @@
|
|||||||
`rmail-insert-mime-resent-message-function' if `rmail-enable-mime'
|
`rmail-insert-mime-resent-message-function' if `rmail-enable-mime'
|
||||||
is non-nil.
|
is non-nil.
|
||||||
|
|
||||||
|
2001-05-30 Stefan Monnier <monnier@rum.cs.yale.edu>
|
||||||
|
|
||||||
|
* textmodes/tex-mode.el (latex-find-indent): Handle the BOBP case.
|
||||||
|
|
||||||
2001-05-29 Sam Steingold <sds@gnu.org>
|
2001-05-29 Sam Steingold <sds@gnu.org>
|
||||||
|
|
||||||
* faces.el (face-valid-attribute-values): Bind `valid' directly
|
* faces.el (face-valid-attribute-values): Bind `valid' directly
|
||||||
|
@ -106,7 +106,8 @@ This takes effect when first loading the sgml-mode library.")
|
|||||||
(define-key map "\"" 'sgml-name-self))
|
(define-key map "\"" 'sgml-name-self))
|
||||||
(if (memq ?' sgml-specials)
|
(if (memq ?' sgml-specials)
|
||||||
(define-key map "'" 'sgml-name-self))))
|
(define-key map "'" 'sgml-name-self))))
|
||||||
(define-key map (make-char 'latin-iso8859-1) 'sgml-maybe-name-self)
|
(define-key map (vector (make-char 'latin-iso8859-1))
|
||||||
|
'sgml-maybe-name-self)
|
||||||
(define-key map [menu-bar sgml] (cons "SGML" menu-map))
|
(define-key map [menu-bar sgml] (cons "SGML" menu-map))
|
||||||
(define-key menu-map [sgml-validate] '("Validate" . sgml-validate))
|
(define-key menu-map [sgml-validate] '("Validate" . sgml-validate))
|
||||||
(define-key menu-map [sgml-name-8bit-mode]
|
(define-key menu-map [sgml-name-8bit-mode]
|
||||||
|
Loading…
Reference in New Issue
Block a user