aboutsummaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Expand)AuthorAgeFilesLines
* * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.Paul Eggert2011-06-212-3/+5
* * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.Paul Eggert2011-06-212-6/+9
* * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font): Avoid ne...Paul Eggert2011-06-212-6/+3
* * xsettings.c (apply_xft_settings): Fix potential buffer overrun.Paul Eggert2011-06-212-15/+24
* * font.c (font_intern_prop): Don't use string_to_number, since the string isn...Paul Eggert2011-06-201-6/+14
* * xselect.c (Fx_get_atom_name): Avoid need for strlen.Paul Eggert2011-06-202-1/+3
* * xrdb.c: Don't assume strlen fits in int; avoid some strlens.Paul Eggert2011-06-202-33/+25
* * xfont.c (xfont_match): Avoid need for strlen.Paul Eggert2011-06-202-3/+3
* * xfns.c: Don't assume strlen fits in int.Paul Eggert2011-06-202-6/+10
* * xdisp.c (display_mode_element): Don't assume strlen fits in int.Paul Eggert2011-06-202-2/+2
* * xdisp.c (message_log_check_duplicate): Return intmax_t,Paul Eggert2011-06-202-7/+13
* * callproc.c (egetenv): Adjust to getenv_internal API change.Paul Eggert2011-06-201-1/+1
* Merge from trunk.Paul Eggert2011-06-207-65/+54
|\
| * * src/process.c (Fset_process_buffer): Clarify return value in docstring.Deniz Dogan2011-06-202-1/+7
| * Fixes for GLYPH_DEBUG.Chong Yidong2011-06-185-51/+37
| * * src/fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.Stefan Monnier2011-06-172-1/+5
* | * termcap.c: Don't assume sizes fit in int and never overflow.Paul Eggert2011-06-202-4/+9
* | * minibuf.c (Fread_buffer): Don't assume strlen fits in int.Paul Eggert2011-06-192-2/+3
* | * lread.c (intern, intern_c_string): Don't assume strlen fits in int.Paul Eggert2011-06-192-2/+3
* | * keyboard.c (parse_tool_bar_item): Avoid need for strlen.Paul Eggert2011-06-192-2/+3
* | * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:Paul Eggert2011-06-192-13/+6
* | * gtkutil.c (style_changed_cb): Avoid need for strlen.Paul Eggert2011-06-192-2/+4
* | * font.c (font_intern_prop): Don't assume string length fits in int.Paul Eggert2011-06-193-4/+13
* | * font.c: Don't assume string length fits in int.Paul Eggert2011-06-192-5/+10
* | * filelock.c: Fix some buffer overrun and integer overflow issues.Paul Eggert2011-06-192-42/+62
* | * fileio.c: Fix some integer overflow issues.Paul Eggert2011-06-192-18/+24
* | * data.c (Fsubr_name): Rewrite to avoid a strlen call.Paul Eggert2011-06-192-1/+3
* | * coding.c (make_subsidiaries): Don't assume string length fits in int.Paul Eggert2011-06-192-2/+4
* | * callproc.c (child_setup): Rewrite to avoid two strlen calls.Paul Eggert2011-06-192-2/+3
* | * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.Paul Eggert2011-06-192-1/+4
* | * emacs.c: Don't assume string length fits in 'int'.Paul Eggert2011-06-192-8/+11
* | * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.Paul Eggert2011-06-192-7/+9
* | * callproc.c: Don't assume string length fits in 'int.'Paul Eggert2011-06-192-5/+7
* | * buffer.c (init_buffer): Don't assume string length fits in 'int'.Paul Eggert2011-06-192-1/+3
* | * lread.c (string_to_number): Simplify the 2011-04-26 change by invoking xsig...Paul Eggert2011-06-182-1/+2
* | * lread.c (invalid_syntax): Omit length argument.Paul Eggert2011-06-182-18/+21
* | * lisp.h (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.Paul Eggert2011-06-182-3/+2
* | * lisp.h (LIST_END_P): Remove unused macro and its bogus comment.Paul Eggert2011-06-182-18/+1
* | * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).Paul Eggert2011-06-182-1/+8
* | * lisp.h (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,Paul Eggert2011-06-182-3/+6
* | * lisp.h (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.Paul Eggert2011-06-182-1/+4
* | * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.Paul Eggert2011-06-182-2/+6
* | * indent.c (Fcompute_motion): Don't assume hscroll and tab offset fit in int.Paul Eggert2011-06-182-1/+2
* | * insdel.c: Omit unnecessary forward decls, to simplify future changes.Paul Eggert2011-06-182-7/+2
* | * indent.c (sane_tab_width): New function.Paul Eggert2011-06-182-19/+19
* | * image.c (xbm_image_p): Don't assume stated width and height fit in int.Paul Eggert2011-06-182-2/+4
* | * lisp.h (lint_assume): New macro.Paul Eggert2011-06-184-1/+17
* | * fns.c (Ffillarray): Don't shadow a local.Paul Eggert2011-06-181-2/+3
* | * editfns.c: Omit unnecessary forward decls, to simplify future changes.Paul Eggert2011-06-182-14/+2
* | * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.Paul Eggert2011-06-182-2/+4