root/trunk/mac/inc/epaths.h

Revision 4220, 3.0 kB (checked in by miyoshi, 9 months ago)

Sync up with Emacs22.2.

  • Property svn:eol-style set to native
Line 
1 /* Hey Emacs, this is -*- C -*- code!  */
2
3 /* Handcrafted epaths.h file for building GNU Emacs on the Macintosh.
4    Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004,
5       2005, 2006, 2007, 2008  Free Software Foundation, Inc.
6
7 This file is part of GNU Emacs.
8
9 GNU Emacs is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
13
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs; see the file COPYING.  If not, write to
21 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA.  */
23
24 /* Contributed by Andrew Choi (akochoi@mac.com).  */
25
26 /* The default search path for Lisp function "load".
27    This sets load-path.  */
28 #define PATH_LOADSEARCH "~emacs/lisp:~emacs/leim:~emacs/lisp/calendar:~emacs/lisp/emacs-lisp:~emacs/lisp/emulation:~emacs/lisp/progmodes:~emacs/lisp/textmodes:~emacs/lisp/international:~emacs/lisp/language:~emacs/lisp/play"
29
30 /* Like PATH_LOADSEARCH, but used only when Emacs is dumping.  This
31    path is usually identical to PATH_LOADSEARCH except that the entry
32    for the directory containing the installed lisp files has been
33    replaced with ../lisp.  */
34 #define PATH_DUMPLOADSEARCH "~emacs/lisp"
35
36 /* The extra search path for programs to invoke.  This is appended to
37    whatever the PATH environment variable says to set the Lisp
38    variable exec-path and the first file name in it sets the Lisp
39    variable exec-directory.  exec-directory is used for finding
40    executables and other architecture-dependent files.  */
41 #define PATH_EXEC "~emacs/mac"
42
43 /* Where Emacs should look for its architecture-independent data
44    files, like the NEWS file.  The lisp variable data-directory
45    is set to this value.  */
46 #define PATH_DATA "~emacs/data"
47
48 /* Where Emacs should look for X bitmap files.
49    The lisp variable x-bitmap-file-path is set based on this value.  */
50 #define PATH_BITMAPS ""
51
52 /* Where Emacs should look for its docstring file.  The lisp variable
53    doc-directory is set to this value.  */
54 #define PATH_DOC "../etc"
55
56 /* Where the configuration process believes the info tree lives.  The
57    lisp variable configure-info-directory gets its value from this
58    macro, and is then used to set the Info-default-directory-list.  */
59 #define PATH_INFO "~emacs/info"
60
61 /* Where Emacs should store game score files.  */
62 #define PATH_GAME "~emacs/games"
63
64 /* Where Emacs should look for the application default file. */
65 /* #define PATH_X_DEFAULTS "/usr/lib/X11/%L/%T/%N%C%S:/usr/lib/X11/%l/%T/%N%C%S:/usr/lib/X11/%T/%N%C%S:/usr/lib/X11/%L/%T/%N%S:/usr/lib/X11/%l/%T/%N%S:/usr/lib/X11/%T/%N%S" */
66
67 /* arch-tag: 32e95134-dfe4-47be-be28-e8cbf78505b6
68    (do not change this comment) */
Note: See TracBrowser for help on using the browser.