| Commit message (Expand) | Author | Age | Files | Lines |
| * | * fns.c: Don't overflow int when computing a list length. | Paul Eggert | 2011-06-14 | 2 | -16/+40 |
| * | * fns.c (Flength): Don't overflow int when computing a list length. | Paul Eggert | 2011-06-14 | 2 | -10/+16 |
| * | * alloc.c: Check that resized vectors' lengths fit in fixnums. | Paul Eggert | 2011-06-14 | 2 | -10/+22 |
| * | * fns.c (next_almost_prime): Don't return a multiple of 3 or 5. | Paul Eggert | 2011-06-14 | 2 | -7/+9 |
| * | * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length. | Paul Eggert | 2011-06-14 | 2 | -1/+3 |
| * | * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now. | Paul Eggert | 2011-06-14 | 3 | -10/+4 |
| * | Variadic C functions now count arguments with ptrdiff_t. | Paul Eggert | 2011-06-14 | 19 | -161/+188 |
| * | * callint.c (Fcall_interactively): Don't use index var as event count. | Paul Eggert | 2011-06-13 | 2 | -2/+4 |
| * | * vm-limit.c (check_memory_limits): Fix incorrect extern function decls. | Paul Eggert | 2011-06-13 | 3 | -5/+7 |
| * | * xterm.c (x_alloc_nearest_color_1): Go back to original algorithm. | Paul Eggert | 2011-06-13 | 2 | -7/+5 |
| * | Merge from trunk. | Paul Eggert | 2011-06-13 | 17 | -887/+725 |
| |\ |
|
| | * | Fix make_frame, introduce Vtemp_buffer_show_specifiers, cleanup doc-strings. | Martin Rudalics | 2011-06-12 | 3 | -5/+31 |
| | * | Fix minor problems found by GCC 4.6.0 static checking. | Paul Eggert | 2011-06-11 | 15 | -47/+75 |
| | |\ |
|
| | | * | Merge from trunk. | Paul Eggert | 2011-06-11 | 3 | -90/+74 |
| | | |\
| | |/
| |/| |
|
| | * | | src/makefile.w32-in: Update dependencies. | Juanma Barranquero | 2011-06-12 | 2 | -6/+6 |
| | * | | Handle gif subimage animation delay correctly. | Chong Yidong | 2011-06-11 | 2 | -83/+67 |
| | | * | * xmenu.c (x_menu_set_in_use): Fix incorrect assumption. | Paul Eggert | 2011-06-11 | 2 | -2/+2 |
| | | * | * buffer.c (Qclone_number): Remove for now, as it's unused. | Paul Eggert | 2011-06-11 | 15 | -49/+76 |
| | |/ |
|
| | * | Window configuration, balancing and fit-to-buffer rewrites. | Martin Rudalics | 2011-06-11 | 2 | -224/+156 |
| | * | * src/image.c (imagemagick_load_image): Fix type mismatch. | Andreas Schwab | 2011-06-11 | 2 | -3/+6 |
| | * | * src/window.h (replace_buffer_in_windows): Declare. | Andreas Schwab | 2011-06-11 | 2 | -0/+5 |
| | * | Move/add window-buffer-related functions to window.el. | Martin Rudalics | 2011-06-11 | 5 | -524/+387 |
| * | | * xterm.c (x_alloc_nearest_color_1): Use a more-precise algorithm | Paul Eggert | 2011-06-13 | 2 | -5/+11 |
| * | | Remove unnecessary casts. | Paul Eggert | 2011-06-12 | 4 | -11/+12 |
| * | | * sound.c (Fplay_sound_internal): Remove cast to unsigned long. | Paul Eggert | 2011-06-12 | 2 | -1/+5 |
| * | | * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts. | Paul Eggert | 2011-06-12 | 2 | -5/+10 |
| * | | * unexelf.c (unexec): Don't assume BSS addr fits in unsigned. | Paul Eggert | 2011-06-12 | 2 | -1/+4 |
| * | | * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned. | Paul Eggert | 2011-06-12 | 2 | -6/+5 |
| * | | * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX. | Paul Eggert | 2011-06-12 | 2 | -3/+5 |
| * | | * lisp.h (CHAR_TABLE_SET): Omit now-redundant test. | Paul Eggert | 2011-06-12 | 2 | -2/+3 |
| * | | * lread.c (Fload): Don't compare a possibly-garbage time_t value. | Paul Eggert | 2011-06-12 | 2 | -4/+9 |
| * | | GLYPH_CODE_FACE returns EMACS_INT, not int. | Paul Eggert | 2011-06-12 | 4 | -4/+12 |
| * | | * character.h (CHAR_VALID_P): Remove unused parameter. | Paul Eggert | 2011-06-12 | 5 | -6/+9 |
| * | | * editfns.c (Ftranslate_region_internal): Omit redundant test. | Paul Eggert | 2011-06-12 | 2 | -5/+4 |
| * | | * fns.c (concat): Minor tuning based on overflow analysis. | Paul Eggert | 2011-06-12 | 2 | -18/+20 |
| * | | * floatfns.c (Fexpt): Omit unnecessary cast to unsigned. | Paul Eggert | 2011-06-12 | 2 | -1/+2 |
| * | | * fileio.c (make_temp_name): Omit unnecessary cast to unsigned. | Paul Eggert | 2011-06-12 | 2 | -1/+3 |
| * | | * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT | Paul Eggert | 2011-06-12 | 2 | -5/+6 |
| * | | * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives. | Paul Eggert | 2011-06-12 | 2 | -2/+7 |
| * | | * data.c (Faset): If ARRAY is a string, check that NEWELT is a char. | Paul Eggert | 2011-06-12 | 2 | -44/+48 |
| * | | * chartab.c (Fchar_table_range): Use CHARACTERP to check range. | Paul Eggert | 2011-06-12 | 2 | -3/+7 |
| * | | * composite.c: Use int, not EMACS_INT, for characters. | Paul Eggert | 2011-06-12 | 2 | -2/+9 |
| * | | Make sure a 64-bit char is never passed to ENCODE_CHAR. | Paul Eggert | 2011-06-12 | 3 | -4/+16 |
| * | | * character.c (char_string): Remove unnecessary casts. | Paul Eggert | 2011-06-12 | 2 | -1/+2 |
| * | | Make sure a 64-bit char is never passed to CHAR_STRING. | Paul Eggert | 2011-06-12 | 6 | -24/+61 |
| * | | Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts. | Paul Eggert | 2011-06-12 | 3 | -7/+8 |
| * | | * lisp.h (UNSIGNED_CMP): New macro. | Paul Eggert | 2011-06-12 | 7 | -12/+38 |
| * | | Merge from trunk. | Paul Eggert | 2011-06-10 | 3 | -42/+42 |
| |\ \
| |/ |
|
| | * | Cruft removal in struct image. | Chong Yidong | 2011-06-10 | 3 | -42/+42 |
| * | | Merge from trunk. | Paul Eggert | 2011-06-10 | 8 | -62/+83 |
| |\ \
| |/ |
|