aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2020-02-25 02:38:33 +0200
committerJuri Linkov2020-02-25 02:38:33 +0200
commit72cf60e9dc8bcfa05157e6f5909c61037c3f7b0f (patch)
tree5cd9a9f0b2bc4fc5ece0a45329c115f19347a301
parent29eb93e3c3ad98027837a11ea3433d9d9b2dfc2f (diff)
downloademacs-72cf60e9dc8bcfa05157e6f5909c61037c3f7b0f.tar.gz
emacs-72cf60e9dc8bcfa05157e6f5909c61037c3f7b0f.zip
* lisp/textmodes/nroff-mode.el (nroff-mode-map): Remove key 'M-s' (bug#39706)
-rw-r--r--admin/release-process9
-rw-r--r--etc/NEWS6
-rw-r--r--lisp/textmodes/nroff-mode.el1
3 files changed, 8 insertions, 8 deletions
diff --git a/admin/release-process b/admin/release-process
index b3dfad58729..1ed7a2e29e7 100644
--- a/admin/release-process
+++ b/admin/release-process
@@ -197,16 +197,11 @@ and change key bindings where necessary. The current list of modes:
1972. Minibuffer binds 'M-s' to 'next-matching-history-element' 1972. Minibuffer binds 'M-s' to 'next-matching-history-element'
198 (not useful any more since C-s can now search in the history). 198 (not useful any more since C-s can now search in the history).
199 199
2003. 'center-line' in Text mode was already moved to the text formatting 2003. PCL-CVS binds 'M-s' to 'cvs-status', and log-edit-mode binds it to
201 keymap as 'M-o M-s' (thus this binding is not necessary any more
202 in 'nroff-mode-map' too and can be removed now from the nroff mode
203 because it can now use the global key binding 'M-o M-s' 'center-line').
204
2054. PCL-CVS binds 'M-s' to 'cvs-status', and log-edit-mode binds it to
206 'log-edit-comment-search-forward'. Perhaps search commands 201 'log-edit-comment-search-forward'. Perhaps search commands
207 on the global key binding 'M-s' are useless in these modes. 202 on the global key binding 'M-s' are useless in these modes.
208 203
2095. Rmail binds '\es' to 'rmail-search'/'rmail-summary-search'. 2044. Rmail binds '\es' to 'rmail-search'/'rmail-summary-search'.
210 205
211 206
212* DOCUMENTATION 207* DOCUMENTATION
diff --git a/etc/NEWS b/etc/NEWS
index 5ca054363d2..93b90d47d37 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -163,6 +163,12 @@ key binding
163* New Modes and Packages in Emacs 28.1 163* New Modes and Packages in Emacs 28.1
164 164
165 165
166* Incompatible Editing Changes in Emacs 28.1
167
168** In nroff mode, 'center-line' is rebound from 'M-s' to 'M-o M-s',
169so now the search prefix map 'M-s' is available in this mode.
170
171
166* Incompatible Lisp Changes in Emacs 28.1 172* Incompatible Lisp Changes in Emacs 28.1
167 173
168** 'equal' no longer examines some contents of window configurations. 174** 'equal' no longer examines some contents of window configurations.
diff --git a/lisp/textmodes/nroff-mode.el b/lisp/textmodes/nroff-mode.el
index 62e8b1f0934..bb2582cf7a2 100644
--- a/lisp/textmodes/nroff-mode.el
+++ b/lisp/textmodes/nroff-mode.el
@@ -50,7 +50,6 @@
50 (let ((map (make-sparse-keymap)) 50 (let ((map (make-sparse-keymap))
51 (menu-map (make-sparse-keymap))) 51 (menu-map (make-sparse-keymap)))
52 (define-key map "\t" 'tab-to-tab-stop) 52 (define-key map "\t" 'tab-to-tab-stop)
53 (define-key map "\es" 'center-line)
54 (define-key map "\e?" 'nroff-count-text-lines) 53 (define-key map "\e?" 'nroff-count-text-lines)
55 (define-key map "\n" 'nroff-electric-newline) 54 (define-key map "\n" 'nroff-electric-newline)
56 (define-key map "\en" 'nroff-forward-text-line) 55 (define-key map "\en" 'nroff-forward-text-line)