diff options
| author | Glenn Morris | 2013-01-03 06:18:24 -0500 |
|---|---|---|
| committer | Glenn Morris | 2013-01-03 06:18:24 -0500 |
| commit | 0d1f53adb0f0a614c102fb5c2b5212ace4b4078b (patch) | |
| tree | e72f8991e81cc007a5cbd6afd6ab1edb6f276767 | |
| parent | a6d6c20b920542ec04f2a2616596f61430187132 (diff) | |
| download | emacs-0d1f53adb0f0a614c102fb5c2b5212ace4b4078b.tar.gz emacs-0d1f53adb0f0a614c102fb5c2b5212ace4b4078b.zip | |
Auto-commit of generated files.
| -rw-r--r-- | autogen/Makefile.in | 2 | ||||
| -rw-r--r-- | autogen/config.in | 2 | ||||
| -rwxr-xr-x | autogen/configure | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/autogen/Makefile.in b/autogen/Makefile.in index 168883bb656..25c816c953e 100644 --- a/autogen/Makefile.in +++ b/autogen/Makefile.in | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | 15 | ||
| 16 | @SET_MAKE@ | 16 | @SET_MAKE@ |
| 17 | 17 | ||
| 18 | # Copyright (C) 2002-2012 Free Software Foundation, Inc. | 18 | # Copyright (C) 2002-2013 Free Software Foundation, Inc. |
| 19 | # | 19 | # |
| 20 | # This file is free software; you can redistribute it and/or modify | 20 | # This file is free software; you can redistribute it and/or modify |
| 21 | # it under the terms of the GNU General Public License as published by | 21 | # it under the terms of the GNU General Public License as published by |
diff --git a/autogen/config.in b/autogen/config.in index df47c16a348..68f2c426ffa 100644 --- a/autogen/config.in +++ b/autogen/config.in | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | /* GNU Emacs site configuration template file. | 3 | /* GNU Emacs site configuration template file. |
| 4 | 4 | ||
| 5 | Copyright (C) 1988, 1993-1994, 1999-2002, 2004-2012 | 5 | Copyright (C) 1988, 1993-1994, 1999-2002, 2004-2013 |
| 6 | Free Software Foundation, Inc. | 6 | Free Software Foundation, Inc. |
| 7 | 7 | ||
| 8 | This file is part of GNU Emacs. | 8 | This file is part of GNU Emacs. |
diff --git a/autogen/configure b/autogen/configure index 4db2595c851..e1df418eede 100755 --- a/autogen/configure +++ b/autogen/configure | |||
| @@ -20670,6 +20670,9 @@ int result = 0; | |||
| 20670 | /* Many gnulib modules require POSIX conformance of EBADF. */ | 20670 | /* Many gnulib modules require POSIX conformance of EBADF. */ |
| 20671 | if (dup2 (2, 1000000) == -1 && errno != EBADF) | 20671 | if (dup2 (2, 1000000) == -1 && errno != EBADF) |
| 20672 | result |= 16; | 20672 | result |= 16; |
| 20673 | /* Flush out a cygwin core dump. */ | ||
| 20674 | if (dup2 (2, -1) != -1 || errno != EBADF) | ||
| 20675 | result |= 32; | ||
| 20673 | return result; | 20676 | return result; |
| 20674 | 20677 | ||
| 20675 | ; | 20678 | ; |