* NEWS: Clarify `smtpmail-auth-credentials' non-existence.
[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
73b0cd50 6rem Copyright (C) 2003-2011\r
eef0be9e
GM
7rem Free Software Foundation, Inc.\r
8\r
b78b918f 9rem This file is part of GNU Emacs.\r
eef0be9e
GM
10\r
11rem GNU Emacs is free software: you can redistribute it and/or modify\r
12rem it under the terms of the GNU General Public License as published by\r
13rem the Free Software Foundation, either version 3 of the License, or\r
14rem (at your option) any later version.\r
15\r
16rem GNU Emacs is distributed in the hope that it will be useful,\r
17rem but WITHOUT ANY WARRANTY; without even the implied warranty of\r
18rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
19rem GNU General Public License for more details.\r
20\r
21rem You should have received a copy of the GNU General Public License\r
22rem along with GNU Emacs. If not, see http://www.gnu.org/licenses/.\r
23\r
24\r
b78b918f
JR
25rem Usage:\r
26rem multi-install-info <switch passed to install-info> FILE1 FILE2 ...\r
27rem\r
28rem By Peter 'Luna' Runestig <peter@runestig.com> 2003\r
29\r
30set INSTALL_INFO=install-info\r
31set II_SWITCH=%1=%2\r
32rem Eat the install-info switch:\r
33shift\r
34\r
35:Loop\r
36shift\r
37if .%1% == . goto EndLoop\r
38%INSTALL_INFO% %II_SWITCH% %1\r
39goto Loop\r
40:EndLoop\r
4256310d 41\r