| Commit message (Expand) | Author | Age | Files | Lines |
| * | Port to Sun C. | Paul Eggert | 2011-06-21 | 4 | -5/+24 |
| * | New primitive secure-hash supporting md5, sha-1 and sha-2 | Leo Liu | 2011-06-21 | 4 | -60/+96 |
| * | * src/process.c (Fset_process_buffer): Clarify return value in docstring. | Deniz Dogan | 2011-06-20 | 2 | -1/+7 |
| * | Fixes for GLYPH_DEBUG. | Chong Yidong | 2011-06-18 | 5 | -51/+37 |
| * | * src/fns.c (Fsafe_length): Yet another int/Lisp_Object mixup. | Stefan Monnier | 2011-06-17 | 2 | -1/+5 |
| * | * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX. | Paul Eggert | 2011-06-16 | 2 | -0/+5 |
| * | Improve buffer-overflow checking (Bug#8873). | Paul Eggert | 2011-06-16 | 6 | -57/+60 |
| |\ |
|
| | * | Improve buffer-overflow checking. | Paul Eggert | 2011-06-16 | 3 | -36/+19 |
| | * | * editfns.c: Tune. Don't use wider integers than needed. Don't use alloca. | Paul Eggert | 2011-06-16 | 2 | -13/+10 |
| | * | * editfns.c (Finsert_char): Don't dump core with very negative counts. | Paul Eggert | 2011-06-16 | 2 | -2/+4 |
| | * | * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing. | Paul Eggert | 2011-06-15 | 2 | -4/+6 |
| | * | * insdel.c, lisp.h (buffer_overflow): New function. | Paul Eggert | 2011-06-15 | 5 | -7/+20 |
| | * | * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed. | Paul Eggert | 2011-06-15 | 2 | -2/+8 |
| |/ |
|
| * | Integer overflow and signedness fixes (Bug#8873). | Paul Eggert | 2011-06-15 | 46 | -531/+836 |
| |\ |
|
| | * | * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772. | Paul Eggert | 2011-06-15 | 2 | -2/+9 |
| | * | * fileio.c (emacs_lseek): Work around GCC bug 43772. | Paul Eggert | 2011-06-15 | 1 | -1/+3 |
| | * | * character.h, charset.h: Use verify_expr, not verify_true. | Paul Eggert | 2011-06-15 | 2 | -24/+25 |
| | * | Merge from trunk. | Paul Eggert | 2011-06-15 | 2 | -0/+5 |
| | |\
| |/
|/| |
|
| * | | * src/eval.c (Fdefvaralias): Also mark the target as variable-special-p. | Stefan Monnier | 2011-06-15 | 2 | -0/+5 |
| | * | Merge from trunk. | Paul Eggert | 2011-06-15 | 6 | -16/+275 |
| | |\
| |/
|/| |
|
| * | | Fix resize and change of scroll bar width for Gtk3. | Jan Djärv | 2011-06-14 | 6 | -12/+273 |
| | * | * fileio.c: Don't assume EMACS_INT fits in off_t. | Paul Eggert | 2011-06-14 | 2 | -8/+28 |
| | * | * fns.c (Fload_average): Don't assume 100 * load average fits in int. | Paul Eggert | 2011-06-14 | 2 | -2/+4 |
| | * | * fns.c (Fcopy_sequence): Don't assume vector length fits in int. | Paul Eggert | 2011-06-14 | 2 | -1/+2 |
| | * | * fns.c (Fnthcdr, Fsort): Don't assume list length fits in int. | Paul Eggert | 2011-06-14 | 2 | -2/+3 |
| | * | * 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 |