]> code.delx.au - gnu-emacs/commitdiff
* src/cmds.c (Fself_insert_command): Mention post-self-insert-hook.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 23 Aug 2011 03:09:59 +0000 (23:09 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 23 Aug 2011 03:09:59 +0000 (23:09 -0400)
src/ChangeLog
src/cmds.c

index e3cf75469625652390d0c4d0f6dc97a2c534cf5c..a1a826d625fb70326aaf6fab882cad65f9985f3d 100644 (file)
@@ -1,3 +1,7 @@
+2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
+
 2011-08-22  Eli Zaretskii  <eliz@gnu.org>
 
        * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
@@ -45,8 +49,8 @@
 2011-08-17  Chong Yidong  <cyd@stupidchicken.com>
 
        * eval.c (internal_condition_case, internal_condition_case_1)
-       (internal_condition_case_2, internal_condition_case_n): Remove
-       unnecessary aborts (Bug#9081).
+       (internal_condition_case_2, internal_condition_case_n):
+       Remove unnecessary aborts (Bug#9081).
 
 2011-08-17  Eli Zaretskii  <eliz@gnu.org>
 
@@ -69,8 +73,8 @@
        * unexcw.c ( __malloc_initialized): Declare external variable.
        (fixup_executable): Force the dumped emacs to reinitialize malloc.
 
-       * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo): New
-       variables.
+       * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
+       New variables.
        (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
        dumped emacs.
        (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
        * xdisp.c (iterate_out_of_display_property): xassert that
        IT->position is set to within IT->object's boundaries.  Break from
        the loop as soon as EOB is reached; avoids infloops in redisplay
-       when IT->position is set up wrongly due to some bug.  Set
-       IT->current to match the bidi iterator unconditionally.
+       when IT->position is set up wrongly due to some bug.
+       Set IT->current to match the bidi iterator unconditionally.
        (push_display_prop): Allow GET_FROM_STRING as IT->method on
        entry.  Force push_it to save on the stack the current
        buffer/string position, to be restored by pop_it.  Fix flags in
 2011-08-08  Eli Zaretskii  <eliz@gnu.org>
 
        * xdisp.c (forward_to_next_line_start): Allow to use the
-       no-display-properties-and-no-overlays under bidi display.  Set
-       disp_pos in the bidi iterator to avoid searches for display
+       no-display-properties-and-no-overlays under bidi display.
+       Set disp_pos in the bidi iterator to avoid searches for display
        properties and overlays.
 
 2011-08-08  Chong Yidong  <cyd@stupidchicken.com>
        * bidi.c <bidi_cache_total_alloc>: Now static.
        (bidi_initialize): Initialize bidi_cache_total_alloc.
 
-       *xdisp.c (display_line): Release buffer allocated for shelved bidi
+       * xdisp.c (display_line): Release buffer allocated for shelved bidi
        cache.  (Bug#9221)
 
        * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
index f49cfc221be995d291a6316b2fd7fab7487b5782..c079ad7168f1c6c0f9a69fa5205313248f77e3bc 100644 (file)
@@ -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;