emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r105535: * src/cmds.c (Fself_insert_c


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105535: * src/cmds.c (Fself_insert_command): Mention post-self-insert-hook.
Date: Mon, 22 Aug 2011 23:09:59 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105535
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Mon 2011-08-22 23:09:59 -0400
message:
  * src/cmds.c (Fself_insert_command): Mention post-self-insert-hook.
modified:
  src/ChangeLog
  src/cmds.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-08-22 17:00:40 +0000
+++ b/src/ChangeLog     2011-08-23 03:09:59 +0000
@@ -1,3 +1,7 @@
+2011-08-23  Stefan Monnier  <address@hidden>
+
+       * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
+
 2011-08-22  Eli Zaretskii  <address@hidden>
 
        * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
@@ -45,8 +49,8 @@
 2011-08-17  Chong Yidong  <address@hidden>
 
        * 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  <address@hidden>
 
@@ -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
@@ -172,8 +176,8 @@
        * 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
@@ -196,8 +200,8 @@
 2011-08-08  Eli Zaretskii  <address@hidden>
 
        * 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  <address@hidden>
@@ -235,7 +239,7 @@
        * 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

=== modified file 'src/cmds.c'
--- a/src/cmds.c        2011-06-24 21:25:22 +0000
+++ b/src/cmds.c        2011-08-23 03:09:59 +0000
@@ -271,7 +271,8 @@
 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;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]