Mercurial > emacs
annotate nt/envadd.bat @ 104304:35fbb27750a7
(sql-product-alist): Add :name tag to entries.
(sql-product): Use it.
(sql-mode-menu): Auto-generate the menu based on sql-product-alist.
(sql-set-product): Add completion.
(sql-highlight-oracle-keywords, sql-highlight-postgres-keywords)
(sql-highlight-linter-keywords, sql-highlight-ms-keywords)
(sql-highlight-ansi-keywords, sql-highlight-sybase-keywords)
(sql-highlight-informix-keywords, sql-highlight-interbase-keywords)
(sql-highlight-ingres-keywords, sql-highlight-solid-keywords)
(sql-highlight-mysql-keywords, sql-highlight-sqlite-keywords)
(sql-highlight-db2-keywords): Remove.
(sql-find-sqli-buffer, sql-set-sqli-buffer-generally)
(sql-highlight-product): Use derived-mode-p.
(sql-set-sqli-buffer): Use with-current-buffer.
(sql-connect-informix, sql-connect-ingres, sql-connect-oracle): Simplify.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 16 Aug 2009 15:48:15 +0000 |
parents | aeceb2460b39 |
children | 1d1d5d9bd884 |
rev | line source |
---|---|
52423 | 1 rem Hack to change/add environment variables in the makefiles for the |
2 rem Windows platform. | |
94795
188974bfdea0
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79730
diff
changeset
|
3 |
100954 | 4 rem Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 |
94795
188974bfdea0
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79730
diff
changeset
|
5 rem Free Software Foundation, Inc. |
188974bfdea0
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79730
diff
changeset
|
6 |
52423 | 7 rem This file is part of GNU Emacs. |
94795
188974bfdea0
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79730
diff
changeset
|
8 |
188974bfdea0
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79730
diff
changeset
|
9 rem GNU Emacs is free software: you can redistribute it and/or modify |
52423 | 10 rem it under the terms of the GNU General Public License as published by |
94795
188974bfdea0
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79730
diff
changeset
|
11 rem the Free Software Foundation, either version 3 of the License, or |
188974bfdea0
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79730
diff
changeset
|
12 rem (at your option) any later version. |
188974bfdea0
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79730
diff
changeset
|
13 |
52423 | 14 rem GNU Emacs is distributed in the hope that it will be useful, |
15 rem but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 rem GNU General Public License for more details. | |
94795
188974bfdea0
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79730
diff
changeset
|
18 |
52423 | 19 rem You should have received a copy of the GNU General Public License |
94795
188974bfdea0
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79730
diff
changeset
|
20 rem along with GNU Emacs. If not, see http://www.gnu.org/licenses/. |
188974bfdea0
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79730
diff
changeset
|
21 |
188974bfdea0
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79730
diff
changeset
|
22 |
52423 | 23 rem Usage: |
24 rem envadd "ENV1=VAL1" "ENV2=VAL2" ... /C <command line> | |
25 rem | |
26 rem The "/C" switch marks the end of environment variables, and the | |
27 rem beginning of the command line. | |
28 rem | |
29 rem By Peter 'Luna' Runestig <peter@runestig.com> 2003 | |
30 | |
31 :Loop | |
32 if .%1% == ./C goto EndLoop | |
33 rem just to avoid an endless loop: | |
34 if .%1% == . goto EndLoop | |
35 set %1 | |
36 shift | |
37 goto Loop | |
38 :EndLoop | |
39 | |
40 rem Eat the "/C" | |
41 shift | |
42 rem Now, run the command line | |
43 %1 %2 %3 %4 %5 %6 %7 %8 %9 | |
52428 | 44 |
45 goto skipArchTag | |
46 arch-tag: 148c5181-dbce-43ae-bba6-1cc6e2a9ea75 | |
47 :skipArchTag |