diff options
| author | Eli Zaretskii | 2012-03-29 22:06:39 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2012-03-29 22:06:39 +0200 |
| commit | 581355cc06ed0800e3e675bfbb2aa00945462f42 (patch) | |
| tree | 9c689657a8a0e74243d518a142af44115287bfb0 /src | |
| parent | 6e7a6ec037313ac3fb76134f20ce268324c05518 (diff) | |
| download | emacs-581355cc06ed0800e3e675bfbb2aa00945462f42.tar.gz emacs-581355cc06ed0800e3e675bfbb2aa00945462f42.zip | |
Discourage in comments from defining HAVE_GETCWD on MS-Windows.
src/s/ms-w32.h: Discourage from defining HAVE_GETCWD.
nt/config.nt: Discourage from defining HAVE_GETCWD.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/s/ms-w32.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 1c740904eb3..e57b1af1b8b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-03-29 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * s/ms-w32.h: Discourage from defining HAVE_GETCWD. | ||
| 4 | |||
| 1 | 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * keyboard.c (safe_run_hooks_error): Don't unquote strings. | 7 | * keyboard.c (safe_run_hooks_error): Don't unquote strings. |
diff --git a/src/s/ms-w32.h b/src/s/ms-w32.h index 5eed3a177dc..e89ecb05931 100644 --- a/src/s/ms-w32.h +++ b/src/s/ms-w32.h | |||
| @@ -159,6 +159,9 @@ struct sigaction { | |||
| 159 | #undef HAVE_UTIMES | 159 | #undef HAVE_UTIMES |
| 160 | #undef HAVE_SETRLIMIT | 160 | #undef HAVE_SETRLIMIT |
| 161 | #undef HAVE_SETPGID | 161 | #undef HAVE_SETPGID |
| 162 | /* If you think about defining HAVE_GETCWD, don't: the alternative | ||
| 163 | getwd is redefined on w32.c, and does not really return the current | ||
| 164 | directory, to get the desired results elsewhere in Emacs */ | ||
| 162 | #undef HAVE_GETCWD | 165 | #undef HAVE_GETCWD |
| 163 | #define HAVE_SHUTDOWN 1 | 166 | #define HAVE_SHUTDOWN 1 |
| 164 | 167 | ||