aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
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