diff options
| author | Stefan Monnier | 2013-03-16 18:08:22 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2013-03-16 18:08:22 -0400 |
| commit | 78be8b64657aeca0472d708450ea1ce2bc142606 (patch) | |
| tree | dccbdc45e747a47b44be92abab79cca15a30111f /lib-src | |
| parent | 6615748ac6bcff258ef548f70bdcc1ab9f740472 (diff) | |
| parent | 67ed8fcd04edeff2d4931acf476e7067c5ceeef2 (diff) | |
| download | emacs-78be8b64657aeca0472d708450ea1ce2bc142606.tar.gz emacs-78be8b64657aeca0472d708450ea1ce2bc142606.zip | |
Merge from emacs-24
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 16 | ||||
| -rw-r--r-- | lib-src/pop.c | 2 |
2 files changed, 14 insertions, 4 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index d8ec0579422..0d7a0a4591e 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2013-03-16 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * pop.c: Fix ERRMAX typo (Bug#13925). | ||
| 4 | (socket_connection) [!HAVE_KRB5_ERROR_TEXT && HAVE_KRB5_ERROR_E_TEXT]: | ||
| 5 | Use ERROR_MAX, not ERRMAX. | ||
| 6 | |||
| 7 | 2013-03-16 Glenn Morris <rgm@gnu.org> | ||
| 8 | |||
| 9 | * Version 24.3 released. | ||
| 10 | |||
| 1 | 2013-03-13 Paul Eggert <eggert@cs.ucla.edu> | 11 | 2013-03-13 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 12 | ||
| 3 | File synchronization fixes (Bug#13944). | 13 | File synchronization fixes (Bug#13944). |
| @@ -6,8 +16,8 @@ | |||
| 6 | * emacsclient.c (main): Use fdatasync, not fsync, since we don't | 16 | * emacsclient.c (main): Use fdatasync, not fsync, since we don't |
| 7 | care about metadata. Keep trying if interrupted. | 17 | care about metadata. Keep trying if interrupted. |
| 8 | * movemail.c (main, popmail): Don't worry about BSD_SYSTEM, since | 18 | * movemail.c (main, popmail): Don't worry about BSD_SYSTEM, since |
| 9 | fsync is available everywhere (or there is a substitute). Don't | 19 | fsync is available everywhere (or there is a substitute). |
| 10 | report an error if fsync returns EINVAL. | 20 | Don't report an error if fsync returns EINVAL. |
| 11 | 21 | ||
| 12 | Static checking by Sun C 5.12. | 22 | Static checking by Sun C 5.12. |
| 13 | * etags.c (analyse_regex): Omit unreachable code. | 23 | * etags.c (analyse_regex): Omit unreachable code. |
| @@ -5182,7 +5192,7 @@ | |||
| 5182 | (longopts): New long options without short counterpart are | 5192 | (longopts): New long options without short counterpart are |
| 5183 | globals, members, no-globals, no-members. Regexp options are now | 5193 | globals, members, no-globals, no-members. Regexp options are now |
| 5184 | defined conditionally to ETAGS_REGEXPS. | 5194 | defined conditionally to ETAGS_REGEXPS. |
| 5185 | (print_help): Updated. | 5195 | (print_help): Update. |
| 5186 | 5196 | ||
| 5187 | 1997-05-22 Francesco Potortì <F.Potorti@cnuce.cnr.it> | 5197 | 1997-05-22 Francesco Potortì <F.Potorti@cnuce.cnr.it> |
| 5188 | 5198 | ||
diff --git a/lib-src/pop.c b/lib-src/pop.c index ba384db3d19..1f3f82baa68 100644 --- a/lib-src/pop.c +++ b/lib-src/pop.c | |||
| @@ -1198,7 +1198,7 @@ socket_connection (char *host, int flags) | |||
| 1198 | } | 1198 | } |
| 1199 | #elif defined HAVE_KRB5_ERROR_E_TEXT | 1199 | #elif defined HAVE_KRB5_ERROR_E_TEXT |
| 1200 | if (err_ret && err_ret->e_text && **err_ret->e_text) | 1200 | if (err_ret && err_ret->e_text && **err_ret->e_text) |
| 1201 | snprintf (pop_error + pop_error_len, ERRMAX - pop_error_len, | 1201 | snprintf (pop_error + pop_error_len, ERROR_MAX - pop_error_len, |
| 1202 | " [server says '%s']", *err_ret->e_text); | 1202 | " [server says '%s']", *err_ret->e_text); |
| 1203 | #endif | 1203 | #endif |
| 1204 | if (err_ret) | 1204 | if (err_ret) |