Created
November 21, 2012 11:53
-
-
Save tagrudev/4124518 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C runs the command self-insert-command, which is an interactive built-in function in `C source code'. | |
It is bound to many ordinary text characters. | |
(self-insert-command N) | |
Insert the character you type. | |
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. | |
At the end, it runs `post-self-insert-hook'. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment