diff options
| author | Glenn Morris | 2012-08-09 19:59:38 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-08-09 19:59:38 -0400 |
| commit | 59a428eb3f1accfe9da6212d2695870d63037bbe (patch) | |
| tree | 407ea6517e1d00acf59d4746a7f80c327c38cb06 /lib-src | |
| parent | 35656638797b4643e7d3ed942ded9fa43429cadc (diff) | |
| download | emacs-59a428eb3f1accfe9da6212d2695870d63037bbe.tar.gz emacs-59a428eb3f1accfe9da6212d2695870d63037bbe.zip | |
Comments
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ntlib.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lib-src/ntlib.c b/lib-src/ntlib.c index 7b41941ab14..2cc791fb56a 100644 --- a/lib-src/ntlib.c +++ b/lib-src/ntlib.c | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | /* Utility and Unix shadow routines for GNU Emacs support programs on NT. | 1 | /* Utility and Unix shadow routines for GNU Emacs support programs on NT. |
| 2 | Copyright (C) 1994, 2001-2012 Free Software Foundation, Inc. | 2 | |
| 3 | Copyright (C) 1994, 2001-2012 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | Author: Geoff Voelker (voelker@cs.washington.edu) | ||
| 6 | Created: 10-8-94 | ||
| 3 | 7 | ||
| 4 | This file is part of GNU Emacs. | 8 | This file is part of GNU Emacs. |
| 5 | 9 | ||
| @@ -14,11 +18,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
| 14 | GNU General Public License for more details. | 18 | GNU General Public License for more details. |
| 15 | 19 | ||
| 16 | You should have received a copy of the GNU General Public License | 20 | You should have received a copy of the GNU General Public License |
| 17 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. | 21 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 18 | |||
| 19 | |||
| 20 | Geoff Voelker (voelker@cs.washington.edu) 10-8-94 | ||
| 21 | */ | ||
| 22 | 22 | ||
| 23 | #include <windows.h> | 23 | #include <windows.h> |
| 24 | #include <stdlib.h> | 24 | #include <stdlib.h> |
| @@ -260,6 +260,7 @@ is_exec (const char * name) | |||
| 260 | stricmp (p, ".cmd") == 0)); | 260 | stricmp (p, ".cmd") == 0)); |
| 261 | } | 261 | } |
| 262 | 262 | ||
| 263 | /* FIXME? This is in config.nt now - is this still needed? */ | ||
| 263 | #define IS_DIRECTORY_SEP(x) ((x) == '/' || (x) == '\\') | 264 | #define IS_DIRECTORY_SEP(x) ((x) == '/' || (x) == '\\') |
| 264 | 265 | ||
| 265 | /* We need this because nt/inc/sys/stat.h defines struct stat that is | 266 | /* We need this because nt/inc/sys/stat.h defines struct stat that is |