diff options
| author | Paul Eggert | 2014-12-20 13:11:40 -0800 |
|---|---|---|
| committer | Paul Eggert | 2014-12-20 13:12:20 -0800 |
| commit | 9b14d8b6f259a4d602f0c61689d6641e7ab20b49 (patch) | |
| tree | f631a2165d1201cb75ed3e362464a5ae2610bfc5 /src/ChangeLog | |
| parent | b459f1f0b970b640bbc1f3827115a18be2dcef7f (diff) | |
| download | emacs-9b14d8b6f259a4d602f0c61689d6641e7ab20b49.tar.gz emacs-9b14d8b6f259a4d602f0c61689d6641e7ab20b49.zip | |
Simplify unexec file mode setting
* unexaix.c, unexcoff.c, unexelf.c, unexmacosx.c:
Don't include <sys/stat.h> when no longer needed.
(unexec): Create file with correct mode in the first place,
rather than overwriting the mode later and fiddling with the
global umask in the mean time. Avoid bogus usage like
'umask (777)', which should have been 'umask (0777)'.
(mark_x): Remove. All callers removed.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 819c88bc3a0..e21d9ee05e1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2014-12-20 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Simplify unexec file mode setting | ||
| 4 | * unexaix.c, unexcoff.c, unexelf.c, unexmacosx.c: | ||
| 5 | Don't include <sys/stat.h> when no longer needed. | ||
| 6 | (unexec): Create file with correct mode in the first place, | ||
| 7 | rather than overwriting the mode later and fiddling with the | ||
| 8 | global umask in the mean time. Avoid bogus usage like | ||
| 9 | 'umask (777)', which should have been 'umask (0777)'. | ||
| 10 | (mark_x): Remove. All callers removed. | ||
| 11 | |||
| 1 | 2014-12-19 Paul Eggert <eggert@cs.ucla.edu> | 12 | 2014-12-19 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 13 | ||
| 3 | Minor cleanups for Lisp objects and symbols | 14 | Minor cleanups for Lisp objects and symbols |