(stop_other_atimers): Fix loop to correctly compute `prev'.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 29 Nov 2005 22:37:27 +0000 (22:37 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 29 Nov 2005 22:37:27 +0000 (22:37 +0000)
src/ChangeLog
src/atimer.c

index 3ed3b6d6279aa595926029eaffaf1c8dd51b4a61..868e39f0a3990ffc040f2d520cef97d314596174 100644 (file)
@@ -1,8 +1,12 @@
+2005-11-29  Ari Roponen  <arjuropo@cc.jyu.fi>  (tiny change)
+
+       * atimer.c (stop_other_atimers): Fix loop to correctly compute `prev'.
+
 2005-11-27  Richard M. Stallman  <rms@gnu.org>
 
        * window.c (adjust_window_trailing_edge): New function.
        (Fadjust_window_trailing_edge): New function.
-       (syms_of_window): defsubr it.
+       (syms_of_window): Defsubr it.
        (window_deletion_count): New variable.
        (delete_window): Update window_deletion_count.
 
@@ -13,7 +17,7 @@
 
 2005-11-26  Henrik Enberg  <henrik.enberg@telia.com>
 
-       * xfaces.c (Finternal_set_lisp_face_attribute_from_resource): 
+       * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
        Handle :inherit property as a lisp expression.
 
 2005-11-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
@@ -52,8 +56,8 @@
 
 2005-11-20  Chong Yidong  <cyd@stupidchicken.com>
 
-       * xfaces.c (Finternal_set_lisp_face_attribute): Use
-       :ignore-defface for new frame defaults when `unspecified' is
+       * xfaces.c (Finternal_set_lisp_face_attribute):
+       Use :ignore-defface for new frame defaults when `unspecified' is
        supplied.
        (Finternal_get_lisp_face_attribute): Hide :ignore-defface.
        (merge_face_vectors): Don't do :ignore-defface overwriting here.
 
        * macterm.c [USE_CG_TEXT_DRAWING] (cg_text_anti_aliasing_threshold):
        New variable.
-       [USE_CG_TEXT_DRAWING] (init_cg_text_anti_aliasing_threshold): New
-       function.
+       [USE_CG_TEXT_DRAWING] (init_cg_text_anti_aliasing_threshold): New fun.
        (init_font_name_table) [USE_ATSUI && USE_CG_TEXT_DRAWING]: Use it.
        [USE_CG_TEXT_DRAWING] (mac_draw_string_cg): Don't do antialiasing if
        font size is smaller than or equal to cg_text_anti_aliasing_threshold.
 
 2005-11-17  Chong Yidong  <cyd@stupidchicken.com>
 
-       * image.c (x_create_bitmap_from_xpm_data): Free attributes on
-       fail.
+       * image.c (x_create_bitmap_from_xpm_data): Free attributes on fail.
 
        * xfaces.c (Qignore_defface): New variable.
        (syms_of_xfaces): Provide `:ignore-defface'.
        (IGNORE_DEFFACE_P): New macro.
        (check_lface_attrs, lface_fully_specified_p)
        (Finternal_set_lisp_face_attribute)
-       (Fface_attribute_relative_p, Fmerge_face_attribute): Handle
-       Qignore_defface as a possible value.
+       (Fface_attribute_relative_p, Fmerge_face_attribute):
+       Handle Qignore_defface as a possible value.
        (merge_face_vectors): The merged face is `unspecified' if the
        mergee specifies `:ignore-defface'.
 
        * xdisp.c (remember_mouse_glyph): Use MATRIX_BOTTOM_TEXT_ROW to
        get end of text rows.  Obtain header-line/mode-line rows directly.
 
-       * xterm.c, w32term.c, macterm.c (note_mouse_movement): Restore
-       help_echo_string if mouse is moved inside last_mouse_glyph.
+       * xterm.c, w32term.c, macterm.c (note_mouse_movement):
+       Restore help_echo_string if mouse is moved inside last_mouse_glyph.
 
 2005-10-12  Kim F. Storm  <storm@cua.dk>
 
        (init_font_name_table) [USE_ATSUI]: Use decode_mac_font_name.
        Don't use Fdowncase because family name is already lowered by
        decode_mac_font_name.
-       (init_font_name_table): Always call decode_mac_font_name.  Add
-       pair of family name and its reference to fm_font_family_alist.
+       (init_font_name_table): Always call decode_mac_font_name.
+       Add pair of family name and its reference to fm_font_family_alist.
        (mac_clear_font_name_table): Clear fm_font_family_alist.
        (XLoadQueryFont): Move font size parsing part to parse_x_font_name.
        Lookup fm_font_family_alist to get font family reference.
        (x_fix_overlapping_area): Add new OVERLAPS arg.
        (get_glyph_string_clip_rects): Add extern.
 
-       * dispnew.c (redraw_overlapping_rows): Call
-       rif->fix_overlapping_area with new OVERLAPS arg as redrawn part.
+       * dispnew.c (redraw_overlapping_rows):
+       Call rif->fix_overlapping_area with new OVERLAPS arg as redrawn part.
 
        * xdisp.c: Rename member for_overlaps_p in struct glyph_string to
        for_overlaps.
 
        * xsmfns.c: (get_current_dir_name): Remove prototype.
 
-       * lisp.h: (get_current_dir_name) [!HAVE_GET_CURRENT_DIR_NAME]: Add
-       prototype.
+       * lisp.h: (get_current_dir_name) [!HAVE_GET_CURRENT_DIR_NAME]:
+       Add prototype.
 
        * sysdep.c [WINDOWSNT]: Add prototype for getwd.
        Don't #undef NULL after including blockinput.h.
index f8ed1b265ec6cb3d2d6bbc73585dff3905daad4e..d260f67d24de27ab9995fdda1790c54d68676dfa 100644 (file)
@@ -231,7 +231,7 @@ stop_other_atimers (t)
       struct atimer *p, *prev;
 
       /* See if T is active.  */
-      for (p = atimers, prev = 0; p && p != t; p = p->next)
+      for (p = atimers, prev = NULL; p && p != t; prev = p, p = p->next)
        ;
 
       if (p == t)