diff options
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/modes.texi | 4 |
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 | |||
| 392 | suited to the text this mode is used for. For example, a major mode | 392 | suited to the text this mode is used for. For example, a major mode |
| 393 | for editing a programming language might redefine @kbd{C-M-a} to | 393 | for editing a programming language might redefine @kbd{C-M-a} to |
| 394 | move to the beginning of a function in a way that works better for | 394 | move to the beginning of a function in a way that works better for |
| 395 | that language. | 395 | that language. The recommended way of tailoring @kbd{C-M-a} to the |
| 396 | needs 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 | ||
| 397 | It is also legitimate for a major mode to rebind a standard key | 399 | It is also legitimate for a major mode to rebind a standard key |
| 398 | sequence whose standard meaning is rarely useful in that mode. For | 400 | sequence whose standard meaning is rarely useful in that mode. For |