aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src/ChangeLog')
-rw-r--r--lib-src/ChangeLog19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index bc7c5d7114d..449985966a4 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,22 @@
12012-07-10 Paul Eggert <eggert@cs.ucla.edu>
2
3 Simplify by avoiding confusing use of strncpy etc.
4 * etags.c (write_classname, C_entries):
5 Use sprintf rather than strncpy or strncat.
6 * etags.c (consider_token, C_entries, HTML_labels, Prolog_functions)
7 (Erlang_functions, substitute, readline_internal, savenstr):
8 * movemail.c (mail_spool_name):
9 Use memcpy rather than strncpy or strncat when either will do.
10 * make-docfile.c (write_c_args):
11 Use memcmp rather than strncmp when either will do.
12 * movemail.c (pop_retr):
13 * pop.c (pop_stat, pop_list, pop_multi_first, pop_last)
14 (socket_connection, pop_getline, sendline, getok):
15 Use snprintf rather than strncpy or strncat.
16 * movemail.c (concat): Remove; no longer needed.
17 (xmalloc): Define only if needed, now that concat has gone away.
18 Return void *. All uses changed.
19
12012-07-09 Paul Eggert <eggert@cs.ucla.edu> 202012-07-09 Paul Eggert <eggert@cs.ucla.edu>
2 21
3 Add GCC-style 'const' attribute to functions that can use it. 22 Add GCC-style 'const' attribute to functions that can use it.