declare smobs in alloc.c
[bpt/emacs.git] / nt / multi-install-info.bat
CommitLineData
b78b918f
JR
1@echo off\r
2\r
3rem Hack to run install-info with multiple info files on the command\r
4rem line on the Windows platform.\r
eef0be9e 5\r
ba318903 6rem Copyright (C) 2003-2014 Free Software Foundation, Inc.\r
eef0be9e 7\r
b78b918f 8rem This file is part of GNU Emacs.\r
eef0be9e
GM
9\r
10rem GNU Emacs is free software: you can redistribute it and/or modify\r
11rem it under the terms of the GNU General Public License as published by\r
12rem the Free Software Foundation, either version 3 of the License, or\r
13rem (at your option) any later version.\r
14\r
15rem GNU Emacs is distributed in the hope that it will be useful,\r
16rem but WITHOUT ANY WARRANTY; without even the implied warranty of\r
17rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
18rem GNU General Public License for more details.\r
19\r
20rem You should have received a copy of the GNU General Public License\r
21rem along with GNU Emacs. If not, see http://www.gnu.org/licenses/.\r
22\r
23\r
b78b918f
JR
24rem Usage:\r
25rem multi-install-info <switch passed to install-info> FILE1 FILE2 ...\r
26rem\r
27rem By Peter 'Luna' Runestig <peter@runestig.com> 2003\r
28\r
29set INSTALL_INFO=install-info\r
30set II_SWITCH=%1=%2\r
31rem Eat the install-info switch:\r
32shift\r
33\r
34:Loop\r
35shift\r
36if .%1% == . goto EndLoop\r
37%INSTALL_INFO% %II_SWITCH% %1\r
38goto Loop\r
39:EndLoop\r
4256310d 40\r