Mercurial > emacs
annotate nt/paths.h @ 33434:032684266f4b
(gud-minor-mode): New var.
(gud-symbol, gud-val): New functions.
(gud-find-file): Copy gud-minor-mode to the new buffer.
(gud-menu-map): Include entries for commands that are not always
available, using :enable to (de)activate them.
(gud-minor-mode-map): New map. Add it to minor-mode-map-alist.
(gud-mode-map): New map.
(gud-gdb-find-file, gud-sdb-find-file, gud-dbx-find-file)
(gud-xdb-find-file, gud-perldb-find-file, gud-pdb-find-file):
Don't set up gud's menu (it's done by the minor-mode).
(gud-minibuffer-local-map): New.
Replace gdb-minibuffer-local-map and pdb-minibuffer-local-map.
(gud-query-cmdline): New function.
(gdb, sdb, dbx, xdb, perldb, pdb, jdb): Use it. Set gud-minor-mode.
(gud-mode): Use define-derived-mode.
Don't set up gud's menu (it's done by the minor-mode).
(gud-chop-words): Remove.
(gud-common-init): Use split-string instead.
(gud-new-keymap, gud-make-debug-menu): Eradicate.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 12 Nov 2000 18:48:22 +0000 |
parents | 1529065f6eb6 |
children | 19b74f67a4ae |
rev | line source |
---|---|
11766 | 1 /* Hey Emacs, this is -*- C -*- code! */ |
2 | |
3 /* Backslashify the default paths for NT */ | |
4 | |
5 /* The default search path for Lisp function "load". | |
6 This sets load-path. */ | |
7 /* #define PATH_LOADSEARCH "/usr/local/lib/emacs/lisp" */ | |
31087
1529065f6eb6
Use forward slash as directory separator in all path
Andrew Innes <andrewi@gnu.org>
parents:
11766
diff
changeset
|
8 #define PATH_LOADSEARCH "C:/emacs/lisp" |
11766 | 9 |
10 /* Like PATH_LOADSEARCH, but used only when Emacs is dumping. This | |
11 path is usually identical to PATH_LOADSEARCH except that the entry | |
12 for the directory containing the installed lisp files has been | |
13 replaced with ../lisp. */ | |
31087
1529065f6eb6
Use forward slash as directory separator in all path
Andrew Innes <andrewi@gnu.org>
parents:
11766
diff
changeset
|
14 #define PATH_DUMPLOADSEARCH "../lisp" |
11766 | 15 |
16 /* The extra search path for programs to invoke. This is appended to | |
17 whatever the PATH environment variable says to set the Lisp | |
18 variable exec-path and the first file name in it sets the Lisp | |
19 variable exec-directory. exec-directory is used for finding | |
20 executables and other architecture-dependent files. */ | |
21 /* #define PATH_EXEC "/usr/local/lib/emacs/etc" */ | |
31087
1529065f6eb6
Use forward slash as directory separator in all path
Andrew Innes <andrewi@gnu.org>
parents:
11766
diff
changeset
|
22 #define PATH_EXEC "C:/emacs/bin" |
11766 | 23 |
24 /* Where Emacs should look for its architecture-independent data | |
25 files, like the NEWS file. The lisp variable data-directory | |
26 is set to this value. */ | |
27 /* #define PATH_DATA "/usr/local/lib/emacs/data" */ | |
31087
1529065f6eb6
Use forward slash as directory separator in all path
Andrew Innes <andrewi@gnu.org>
parents:
11766
diff
changeset
|
28 #define PATH_DATA "C:/emacs/data" |
11766 | 29 |
30 /* Where Emacs should look for its docstring file. The lisp variable | |
31 doc-directory is set to this value. */ | |
31087
1529065f6eb6
Use forward slash as directory separator in all path
Andrew Innes <andrewi@gnu.org>
parents:
11766
diff
changeset
|
32 #define PATH_DOC "C:/emacs/etc" |
11766 | 33 |
34 /* The name of the directory that contains lock files with which we | |
35 record what files are being modified in Emacs. This directory | |
36 should be writable by everyone. THE STRING MUST END WITH A | |
37 SLASH!!! */ | |
38 /* #define PATH_LOCK "/usr/local/lib/emacs/lock/" */ | |
31087
1529065f6eb6
Use forward slash as directory separator in all path
Andrew Innes <andrewi@gnu.org>
parents:
11766
diff
changeset
|
39 #define PATH_LOCK "C:/emacs/lock/" |
11766 | 40 |
41 /* Where the configuration process believes the info tree lives. The | |
42 lisp variable configure-info-directory gets its value from this | |
43 macro, and is then used to set the Info-default-directory-list. */ | |
44 /* #define PATH_INFO "/usr/local/info" */ | |
31087
1529065f6eb6
Use forward slash as directory separator in all path
Andrew Innes <andrewi@gnu.org>
parents:
11766
diff
changeset
|
45 #define PATH_INFO "C:/emacs/info" |