Mercurial > emacs
annotate nt/envadd.bat @ 84966:fa9dd0b54e54
* net/tramp.el (with-file-property, with-connection-property):
Highlight as keyword.
(tramp-rfn-eshadow-setup-minibuffer)
(tramp-rfn-eshadow-update-overlay, tramp-handle-set-file-times)
(tramp-set-file-uid-gid, tramp-do-copy-or-rename-file-via-buffer)
(tramp-do-copy-or-rename-file-directly)
(tramp-do-copy-or-rename-file-out-of-band)
(tramp-handle-shell-command, tramp-get-debug-buffer)
(tramp-send-command-and-read, tramp-equal-remote)
(tramp-get-local-gid): Pacify byte-compiler.
(tramp-handle-file-name-directory): Result shall not be expanded.
(tramp-find-foreign-file-name-handler): Rewrite.
(tramp-dissect-file-name): Add optional parameter NODEFAULT.
* net/tramp-cache.el (tramp-cache-print): Pacify byte-compiler.
* net/tramp-fish.el (tramp-fish-handle-expand-file-name): Apply
`tramp-completion-mode-p'.
(tramp-fish-handle-set-file-times)
(tramp-fish-handle-executable-find)
(tramp-fish-handle-process-file, tramp-fish-get-file-entries)
(tramp-fish-retrieve-data): Pacify byte-compiler.
* net/tramp-gw.el (tramp-gw-basic-authentication): Call
`tramp-read-passwd' with first parameter `nil'.
author | Michael Albinus <michael.albinus@gmx.de> |
---|---|
date | Fri, 28 Sep 2007 16:05:49 +0000 |
parents | 075eb71f218d |
children | e27f17d9c8ed |
rev | line source |
---|---|
52423 | 1 rem Hack to change/add environment variables in the makefiles for the |
2 rem Windows platform. | |
3 rem | |
75348 | 4 rem Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. |
52423 | 5 rem |
6 rem This file is part of GNU Emacs. | |
7 rem | |
8 rem GNU Emacs is free software; you can redistribute it and/or modify | |
9 rem it under the terms of the GNU General Public License as published by | |
78246
075eb71f218d
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
10 rem the Free Software Foundation; either version 3, or (at your option) |
52423 | 11 rem any later version. |
12 rem | |
13 rem GNU Emacs is distributed in the hope that it will be useful, | |
14 rem but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 rem GNU General Public License for more details. | |
17 rem | |
18 rem You should have received a copy of the GNU General Public License | |
19 rem along with GNU Emacs; see the file COPYING. If not, write to | |
64083 | 20 rem the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
21 rem Boston, MA 02110-1301, USA. | |
52423 | 22 rem |
23 rem | |
24 rem Usage: | |
25 rem envadd "ENV1=VAL1" "ENV2=VAL2" ... /C <command line> | |
26 rem | |
27 rem The "/C" switch marks the end of environment variables, and the | |
28 rem beginning of the command line. | |
29 rem | |
30 rem By Peter 'Luna' Runestig <peter@runestig.com> 2003 | |
31 | |
32 :Loop | |
33 if .%1% == ./C goto EndLoop | |
34 rem just to avoid an endless loop: | |
35 if .%1% == . goto EndLoop | |
36 set %1 | |
37 shift | |
38 goto Loop | |
39 :EndLoop | |
40 | |
41 rem Eat the "/C" | |
42 shift | |
43 rem Now, run the command line | |
44 %1 %2 %3 %4 %5 %6 %7 %8 %9 | |
52428 | 45 |
46 goto skipArchTag | |
47 arch-tag: 148c5181-dbce-43ae-bba6-1cc6e2a9ea75 | |
48 :skipArchTag |