aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorGlenn Morris2019-06-11 08:38:34 -0700
committerGlenn Morris2019-06-11 08:38:34 -0700
commite17cda4942adf353fb7adc4bcdaa61a1ae79db8d (patch)
treeff5f524568260a2823023c2a8e7dde84fc6ae1e0 /doc/lispref
parentef744119a7cbd0692c53704604e9bb6345c371b6 (diff)
parent758e9a8ed49c15f7069a67cf0c2ce3c6f9a3f7e1 (diff)
downloademacs-e17cda4942adf353fb7adc4bcdaa61a1ae79db8d.tar.gz
emacs-e17cda4942adf353fb7adc4bcdaa61a1ae79db8d.zip
Merge from origin/emacs-26
758e9a8 Revert "Don't mark main_thread (Bug#36155)" 1877b7b Don't mark main_thread (Bug#36155) 4904fb3 More quotation fixes (Bug#35885) 4cc4b5d ; * src/keyboard.c (tool_bar_items): Fix a typo. (Bug#36143) b58ecaf Minor copyedits in efaq-w32 48422af Tiny improvement of documentation of major mode conventions 25d44d2 * nt/addpm.c (main): Fix buffer overflow
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/modes.texi4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi
index f41607c5dc0..f7fb9a4417d 100644
--- a/doc/lispref/modes.texi
+++ b/doc/lispref/modes.texi
@@ -392,7 +392,9 @@ it provides a command that does the same job in a way better
392suited to the text this mode is used for. For example, a major mode 392suited to the text this mode is used for. For example, a major mode
393for editing a programming language might redefine @kbd{C-M-a} to 393for editing a programming language might redefine @kbd{C-M-a} to
394move to the beginning of a function in a way that works better for 394move to the beginning of a function in a way that works better for
395that language. 395that language. The recommended way of tailoring @kbd{C-M-a} to the
396needs of a major mode is to set @code{beginning-of-defun-function}
397(@pxref{List Motion}) to invoke the function specific to the mode.
396 398
397It is also legitimate for a major mode to rebind a standard key 399It is also legitimate for a major mode to rebind a standard key
398sequence whose standard meaning is rarely useful in that mode. For 400sequence whose standard meaning is rarely useful in that mode. For