diff options
author | Glenn Morris <rgm@gnu.org> | 2015-01-04 00:22:29 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2015-01-04 00:22:29 -0800 |
commit | e82fc62bd46270c50f491c69ca24315c87940004 (patch) | |
tree | f206ae22137ced94482016620e58e6adf3aecc23 /lib-src | |
parent | fec9b792f543c35b1a635b3a3326d496e3ca9012 (diff) | |
download | emacs-e82fc62bd46270c50f491c69ca24315c87940004.tar.gz |
# ChangeLog fixes
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/ChangeLog | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 1795f021027..5d17324fdce 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -11,6 +11,17 @@ since GCC sometimes calls stpcpy when it sees strcpy, under optimization switches. +2014-12-25 Paul Eggert <eggert@cs.ucla.edu> + + * ebrowse.c (sym_scope_1, operator_name, open_file): + * emacsclient.c (get_server_config, set_local_socket) + (start_daemon_and_retry_set_socket): + * etags.c (main, C_entries, relative_filename): + * pop.c (sendline): + * update-game-score.c (main): + Rewrite to avoid the need for strcat, typically by using stpcpy + and/or lispstpcpy. strcat tends to be part of O(N**2) algorithms. + 2014-12-14 Paul Eggert <eggert@cs.ucla.edu> * etags.c (analyze_regex): Rename from analyse_regex. @@ -140,8 +151,7 @@ 2014-05-26 Paul Eggert <eggert@cs.ucla.edu> - Fix rcs2log problems with CVS. - Problem reported by Glenn Morris in + Fix rcs2log problems with CVS. Reported by Glenn Morris in <http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00277.html>. Plus, fix some security and filename quoting problems. * rcs2log (logdir): Prefer mktemp if available. @@ -3496,7 +3506,7 @@ 2004-04-17 Paul Eggert <eggert@gnu.org> * rcs2log (Help): Clarify wording of the usage message. - Problem reported by Alan Mackenzie in + Reported by Alan Mackenzie in <http://mail.gnu.org/archive/html/bug-gnu-emacs/2004-04/msg00188.html>. 2004-04-07 Stefan Monnier <monnier@iro.umontreal.ca> |