diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-02-10 19:38:10 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-02-10 19:38:18 +0100 |
commit | 21e475ea0c0d04ae7634f377ed64fe179388b133 (patch) | |
tree | 5bf1e4ceb83407ba3ccca436476aabe5f3c3e955 /lisp/textmodes/text-mode.el | |
parent | 2e5d400ca6d7619cb4c0bcbd8abf5828127c77bf (diff) | |
download | emacs-21e475ea0c0d04ae7634f377ed64fe179388b133.tar.gz emacs-21e475ea0c0d04ae7634f377ed64fe179388b133.tar.bz2 emacs-21e475ea0c0d04ae7634f377ed64fe179388b133.zip |
Remove the 'M-o' ('facemap-keymap') binding experimentally
* doc/lispref/maps.texi (Standard Keymaps):
* doc/lispref/keymaps.texi (Prefix Keys): Remove mentions.
* etc/facemenu-removal.txt: New temporary file.
* lisp/loadup.el: Don't load facemenu.el.
(removed-facemenu-command): New command.
(facemenu-keymap-restore): New function.
* lisp/textmodes/text-mode.el (center-paragraph): Remove binding.
(center-line): Remove binding.
Diffstat (limited to 'lisp/textmodes/text-mode.el')
-rw-r--r-- | lisp/textmodes/text-mode.el | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lisp/textmodes/text-mode.el b/lisp/textmodes/text-mode.el index 1432ab6a300..ab9f7b9c7c0 100644 --- a/lisp/textmodes/text-mode.el +++ b/lisp/textmodes/text-mode.el @@ -169,8 +169,6 @@ both existing buffers and buffers that you subsequently create." (if enable-mode "enabled" "disabled")))) -(define-key facemenu-keymap "\eS" 'center-paragraph) - (defun center-paragraph () "Center each nonblank line in the paragraph at or after point. See `center-line' for more info." @@ -198,8 +196,6 @@ See `center-line' for more info." (center-line)) (forward-line 1))))) -(define-key facemenu-keymap "\es" 'center-line) - (defun center-line (&optional nlines) "Center the line point is on, within the width specified by `fill-column'. This means adjusting the indentation so that it equals |