comparison nt/cmdproxy.c @ 94795:188974bfdea0

Switch to recommended form of GPLv3 permissions notice.
author Glenn Morris <rgm@gnu.org>
date Fri, 09 May 2008 05:14:16 +0000
parents e27f17d9c8ed
children c3309dba6542
comparison
equal deleted inserted replaced
94794:f108de597672 94795:188974bfdea0
1 /* Proxy shell designed for use with Emacs on Windows 95 and NT. 1 /* Proxy shell designed for use with Emacs on Windows 95 and NT.
2 Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005, 2 Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 2006, 2007, 2008 Free Software Foundation, Inc. 3 2008 Free Software Foundation, Inc.
4 4
5 Accepts subset of Unix sh(1) command-line options, for compatability 5 Accepts subset of Unix sh(1) command-line options, for compatability
6 with elisp code written for Unix. When possible, executes external 6 with elisp code written for Unix. When possible, executes external
7 programs directly (a common use of /bin/sh by Emacs), otherwise 7 programs directly (a common use of /bin/sh by Emacs), otherwise
8 invokes the user-specified command processor to handle built-in shell 8 invokes the user-specified command processor to handle built-in shell
13 convention that everything after "/c" (the Windows equivalent of 13 convention that everything after "/c" (the Windows equivalent of
14 "-c") is the input string. 14 "-c") is the input string.
15 15
16 This file is part of GNU Emacs. 16 This file is part of GNU Emacs.
17 17
18 GNU Emacs is free software; you can redistribute it and/or modify 18 GNU Emacs is free software: you can redistribute it and/or modify
19 it under the terms of the GNU General Public License as published by 19 it under the terms of the GNU General Public License as published by
20 the Free Software Foundation; either version 3, or (at your option) 20 the Free Software Foundation, either version 3 of the License, or
21 any later version. 21 (at your option) any later version.
22 22
23 GNU Emacs is distributed in the hope that it will be useful, 23 GNU Emacs is distributed in the hope that it will be useful,
24 but WITHOUT ANY WARRANTY; without even the implied warranty of 24 but WITHOUT ANY WARRANTY; without even the implied warranty of
25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 GNU General Public License for more details. 26 GNU General Public License for more details.
27 27
28 You should have received a copy of the GNU General Public License 28 You should have received a copy of the GNU General Public License
29 along with GNU Emacs; see the file COPYING. If not, write to 29 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
30 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
31 Boston, MA 02110-1301, USA. */
32 30
33 #include <windows.h> 31 #include <windows.h>
34 32
35 #include <stdarg.h> /* va_args */ 33 #include <stdarg.h> /* va_args */
36 #include <malloc.h> /* alloca */ 34 #include <malloc.h> /* alloca */