diff options
| author | Stefan Monnier | 2011-03-31 00:24:03 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2011-03-31 00:24:03 -0400 |
| commit | 40d83b412f584cc02e68d4eac8fd5e6eb769e2fe (patch) | |
| tree | b56f27a7e6d75a8c1fd27b00179a27b5efea0a32 /lib-src/ChangeLog | |
| parent | f488fb6528738131ef41859e1f04125f2e50efce (diff) | |
| parent | 44f230aa043ebb222aa0876b44d70484d5dd38db (diff) | |
| download | emacs-40d83b412f584cc02e68d4eac8fd5e6eb769e2fe.tar.gz emacs-40d83b412f584cc02e68d4eac8fd5e6eb769e2fe.zip | |
Merge from trunk
Diffstat (limited to 'lib-src/ChangeLog')
| -rw-r--r-- | lib-src/ChangeLog | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index bd1a84cf0b9..5007995e14e 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,51 @@ | |||
| 1 | 2011-03-30 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Fix a problem found by GCC 4.6.0's static checks. | ||
| 4 | * etags.c (just_read_file): Remove dummy variable and simplify. | ||
| 5 | |||
| 6 | 2011-03-27 Glenn Morris <rgm@gnu.org> | ||
| 7 | |||
| 8 | * emacsclient.c: Replace SIGTYPE with void. | ||
| 9 | |||
| 10 | 2011-03-23 Juanma Barranquero <lekktu@gmail.com> | ||
| 11 | |||
| 12 | * ntlib.c: Include <ctype.h>. | ||
| 13 | |||
| 14 | 2011-03-23 Glenn Morris <rgm@gnu.org> | ||
| 15 | |||
| 16 | * Makefile.in ($(DESTDIR)${archlibdir}): | ||
| 17 | Use `install-sh -d' rather than mkinstalldirs. | ||
| 18 | |||
| 19 | 2011-03-23 Paul Eggert <eggert@cs.ucla.edu> | ||
| 20 | |||
| 21 | * ebrowse.c: Use size_t, not int, for sizes. | ||
| 22 | This avoids a warning with gcc -Wstrict-overflow, and works | ||
| 23 | better for very large objects. | ||
| 24 | (inbuffer_size): Now size_t. All uses changed. | ||
| 25 | (xmalloc, xrealloc, operator_name, process_file): Use size_t for | ||
| 26 | sizes. Don't bother testing whether a size_t value can be negative. | ||
| 27 | |||
| 28 | * etags.c (Ada_funcs): Redo slightly to avoid overflow warning. | ||
| 29 | |||
| 30 | etags: In Prolog functions, don't assume int fits in size_t. | ||
| 31 | This avoids a warning with gcc -Wstrict-overflow. | ||
| 32 | * etags.c (Prolog_functions, prolog_pr, prolog_atom): Use size_t, | ||
| 33 | not int, to store sizes. | ||
| 34 | (prolog_atom): Return 0, not -1, on error. All callers changed. | ||
| 35 | |||
| 36 | update-game-score: fix bug with -r | ||
| 37 | * update-game-score.c (main): Don't set 'scores' to garbage when | ||
| 38 | -r is specified and scorecount != MAX_SCORES (Bug#8310). This bug | ||
| 39 | was introduced in the 2002-04-10 change, and was found with gcc | ||
| 40 | -Wstrict-overflow (GCC 4.5.2, x86-64). | ||
| 41 | |||
| 42 | fakemail: Remove dependency on ignore-value. | ||
| 43 | This undoes some of the recent fakemail-related changes. | ||
| 44 | It is made possible due to recent changes to gnulib's stdio module. | ||
| 45 | * Makefile.in (fakemail${EXEEXT}): Do not depend on ignore-value.h. | ||
| 46 | * fakemail.c: Do not include ignore-value.h. | ||
| 47 | (put_line): Do not use ignore_value. | ||
| 48 | |||
| 1 | 2011-03-03 Drake Wilson <drake@begriffli.ch> (tiny change) | 49 | 2011-03-03 Drake Wilson <drake@begriffli.ch> (tiny change) |
| 2 | 50 | ||
| 3 | * emacsclient.c (longopts): Add quiet. | 51 | * emacsclient.c (longopts): Add quiet. |