]> git.eshelyaron.com Git - emacs.git/commitdiff
Tiny improvement of documentation of major mode conventions
authorEli Zaretskii <eliz@gnu.org>
Sat, 8 Jun 2019 08:24:47 +0000 (11:24 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 8 Jun 2019 08:24:47 +0000 (11:24 +0300)
* doc/lispref/modes.texi (Major Mode Conventions): More
accurate advice regarding customization of 'C-M-a' by major
modes.

doc/lispref/modes.texi

index e8a8eb35e97fea5eb8ad48d02ae7c25d5fd45fbc..b6b9b58c71c22dc2f6bf80ef82d4c75a4a26ee60 100644 (file)
@@ -363,7 +363,9 @@ it provides a command that does the same job in a way better
 suited to the text this mode is used for.  For example, a major mode
 for editing a programming language might redefine @kbd{C-M-a} to
 move to the beginning of a function in a way that works better for
-that language.
+that language.  The recommended way of tailoring @kbd{C-M-a} to the
+needs of a major mode is to set @code{beginning-of-defun-function}
+(@pxref{List Motion}) to invoke the function specific to the mode.
 
 It is also legitimate for a major mode to rebind a standard key
 sequence whose standard meaning is rarely useful in that mode.  For