diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-08-22 23:09:59 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-08-22 23:09:59 -0400 |
commit | 8b76d6f8eab68baebd7cc7da85e93bf09e4d34da (patch) | |
tree | ea8ba82455fc6b5422d92e98bfc62bef91ebf61b /src/cmds.c | |
parent | 867cab7493ffdaa9de2b06db573a5f6290a2042f (diff) | |
download | emacs-8b76d6f8eab68baebd7cc7da85e93bf09e4d34da.tar.gz |
* src/cmds.c (Fself_insert_command): Mention post-self-insert-hook.
Diffstat (limited to 'src/cmds.c')
-rw-r--r-- | src/cmds.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmds.c b/src/cmds.c index f49cfc221be..c079ad7168f 100644 --- a/src/cmds.c +++ b/src/cmds.c @@ -271,7 +271,8 @@ Whichever character you type to run this command is inserted. Before insertion, `expand-abbrev' is executed if the inserted character does not have word syntax and the previous character in the buffer does. After insertion, the value of `auto-fill-function' is called if the -`auto-fill-chars' table has a non-nil value for the inserted character. */) +`auto-fill-chars' table has a non-nil value for the inserted character. +At the end, it runs `post-self-insert-hook'. */) (Lisp_Object n) { int remove_boundary = 1; |