47726
|
1 ;;; paths.el --- define pathnames for use by various Emacs commands -*- no-byte-compile: t -*-
|
659
|
2
|
96703
|
3 ;; Copyright (C) 1986, 1988, 1994, 1999, 2000, 2001, 2002, 2003, 2004,
|
100908
|
4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
|
846
|
5
|
807
|
6 ;; Maintainer: FSF
|
814
|
7 ;; Keywords: internal
|
807
|
8
|
88
|
9 ;; This file is part of GNU Emacs.
|
|
10
|
94678
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
|
88
|
12 ;; it under the terms of the GNU General Public License as published by
|
94678
|
13 ;; the Free Software Foundation, either version 3 of the License, or
|
|
14 ;; (at your option) any later version.
|
88
|
15
|
|
16 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19 ;; GNU General Public License for more details.
|
|
20
|
|
21 ;; You should have received a copy of the GNU General Public License
|
94678
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
88
|
23
|
807
|
24 ;;; Commentary:
|
88
|
25
|
|
26 ;; These are default settings for names of certain files and directories
|
|
27 ;; that Emacs needs to refer to from time to time.
|
|
28
|
|
29 ;; If these settings are not right, override them with `setq'
|
|
30 ;; in site-init.el. Do not change this file.
|
|
31
|
807
|
32 ;;; Code:
|
|
33
|
25538
|
34 ;; Docstrings in this file should, where reasonable, follow the
|
|
35 ;; conventions described in bindings.el, so that they get put in the
|
|
36 ;; DOC file rather than in memory.
|
|
37
|
30019
|
38 (defun prune-directory-list (dirs &optional keep reject)
|
99298
|
39 "Return a copy of DIRS with all non-existent directories removed.
|
30019
|
40 The optional argument KEEP is a list of directories to retain even if
|
|
41 they don't exist, and REJECT is a list of directories to remove from
|
|
42 DIRS, even if they exist; REJECT takes precedence over KEEP.
|
|
43
|
|
44 Note that membership in REJECT and KEEP is checked using simple string
|
64544
|
45 comparison."
|
30019
|
46 (apply #'nconc
|
|
47 (mapcar (lambda (dir)
|
|
48 (and (not (member dir reject))
|
|
49 (or (member dir keep) (file-directory-p dir))
|
|
50 (list dir)))
|
|
51 dirs)))
|
|
52
|
390
|
53 (defvar Info-default-directory-list
|
34573
|
54 (let* ((config-dir
|
|
55 (file-name-as-directory configure-info-directory))
|
|
56 (config
|
|
57 (list config-dir))
|
30019
|
58 (unpruned-prefixes
|
|
59 ;; Directory trees that may not exist at installation time, and
|
|
60 ;; so shouldn't be pruned based on existance.
|
|
61 '("/usr/local/"))
|
|
62 (prefixes
|
|
63 ;; Directory trees in which to look for info subdirectories
|
|
64 (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/")
|
|
65 unpruned-prefixes))
|
|
66 (suffixes
|
|
67 ;; Subdirectories in each directory tree that may contain info
|
|
68 ;; directories.
|
75270
|
69 '("share/" "" "gnu/" "gnu/lib/" "gnu/lib/emacs/"
|
34573
|
70 "emacs/" "lib/" "lib/emacs/"))
|
|
71 (standard-info-dirs
|
|
72 (apply #'nconc
|
|
73 (mapcar (lambda (pfx)
|
|
74 (let ((dirs
|
|
75 (mapcar (lambda (sfx)
|
|
76 (concat pfx sfx "info/"))
|
|
77 suffixes)))
|
|
78 (if (member pfx unpruned-prefixes)
|
|
79 dirs
|
|
80 (prune-directory-list dirs config))))
|
|
81 prefixes))))
|
75270
|
82 ;; If $(prefix)/share/info is not one of the standard info
|
|
83 ;; directories, they are probably installing an experimental
|
|
84 ;; version of Emacs, so make sure that experimental version's Info
|
|
85 ;; files override the ones in standard directories.
|
34573
|
86 (if (member config-dir standard-info-dirs)
|
34588
|
87 (nconc standard-info-dirs config)
|
34573
|
88 (cons config-dir standard-info-dirs)))
|
15458
|
89 "Default list of directories to search for Info documentation files.
|
|
90 They are searched in the order they are given in the list.
|
5405
|
91 Therefore, the directory of Info files that come with Emacs
|
34573
|
92 normally should come last (so that local files override standard ones),
|
|
93 unless Emacs is installed into a non-standard directory. In the latter
|
|
94 case, the directory of Info files that come with Emacs should be
|
|
95 first in this list.
|
15458
|
96
|
|
97 Once Info is started, the list of directories to search
|
|
98 comes from the variable `Info-directory-list'.
|
|
99 This variable `Info-default-directory-list' is used as the default
|
29306
|
100 for initializing `Info-directory-list' when Info is started, unless
|
|
101 the environment variable INFOPATH is set.")
|
88
|
102
|
57553
|
103 (defvar news-directory
|
13806
|
104 (if (file-exists-p "/usr/spool/news/")
|
|
105 "/usr/spool/news/"
|
|
106 "/var/spool/news/")
|
88
|
107 "The root directory below which all news files are stored.")
|
57584
|
108 (defvaralias 'news-path 'news-directory)
|
88
|
109
|
|
110 (defvar news-inews-program
|
|
111 (cond ((file-exists-p "/usr/bin/inews") "/usr/bin/inews")
|
|
112 ((file-exists-p "/usr/local/inews") "/usr/local/inews")
|
|
113 ((file-exists-p "/usr/local/bin/inews") "/usr/local/bin/inews")
|
15868
|
114 ((file-exists-p "/usr/contrib/lib/news/inews") "/usr/contrib/lib/news/inews")
|
88
|
115 ((file-exists-p "/usr/lib/news/inews") "/usr/lib/news/inews")
|
|
116 (t "inews"))
|
|
117 "Program to post news.")
|
|
118
|
25538
|
119 ;; set this to your local server
|
|
120 (defvar gnus-default-nntp-server "" "\
|
|
121 The name of the host running an NNTP server.
|
10074
|
122 The null string means use the local host as the server site.")
|
88
|
123
|
|
124 (defvar gnus-nntp-service "nntp"
|
99298
|
125 "NNTP service name, usually \"nntp\" or 119.
|
89
|
126 Go to a local news spool if its value is nil, in which case `gnus-nntp-server'
|
|
127 should be set to `(system-name)'.")
|
88
|
128
|
25538
|
129 (defvar gnus-local-organization nil "\
|
|
130 *The name of your organization, as a string.
|
88
|
131 The `ORGANIZATION' environment variable is used instead if defined.")
|
|
132
|
26233
|
133 (defcustom rmail-file-name "~/RMAIL"
|
99298
|
134 "Name of user's primary mail file."
|
26233
|
135 :type 'string
|
|
136 :group 'rmail
|
|
137 :version "21.1")
|
88
|
138
|
57553
|
139 (defvar rmail-spool-directory
|
96703
|
140 (cond ((file-exists-p "/var/mail")
|
|
141 ;; SVR4 and recent BSD are said to use this.
|
|
142 ;; Rather than trying to know precisely which systems use it,
|
|
143 ;; let's assume this dir is never used for anything else.
|
8138
|
144 "/var/mail/")
|
13806
|
145 ;; Many GNU/Linux systems use this name.
|
|
146 ((file-exists-p "/var/spool/mail")
|
13817
|
147 "/var/spool/mail/")
|
96703
|
148 ((memq system-type '(hpux usg-unix-v irix))
|
4691
4d3426d8b92a
(rmail-spool-directory): Use "/var/mail/" if system-type is netbsd.
Roland McGrath <roland@gnu.org>
diff
changeset
|
149 "/usr/mail/")
|
4d3426d8b92a
(rmail-spool-directory): Use "/var/mail/" if system-type is netbsd.
Roland McGrath <roland@gnu.org>
diff
changeset
|
150 (t "/usr/spool/mail/"))
|
88
|
151 "Name of directory used by system mailer for delivering new mail.
|
|
152 Its name should end with a slash.")
|
|
153
|
57553
|
154 (defcustom remote-shell-program
|
10450
|
155 (cond
|
|
156 ;; Some systems use rsh for the remote shell; others use that name for the
|
|
157 ;; restricted shell and use remsh for the remote shell. Let's try to guess
|
|
158 ;; based on what we actually find out there. The restricted shell is
|
|
159 ;; almost certainly in /bin or /usr/bin, so it's probably safe to assume
|
10484
|
160 ;; that an rsh found elsewhere is the remote shell program. The converse
|
|
161 ;; is not true: /usr/bin/rsh could be either one, so check that last.
|
10450
|
162 ((file-exists-p "/usr/ucb/remsh") "/usr/ucb/remsh")
|
10484
|
163 ((file-exists-p "/usr/bsd/remsh") "/usr/bsd/remsh")
|
10450
|
164 ((file-exists-p "/bin/remsh") "/bin/remsh")
|
12392
|
165 ((file-exists-p "/usr/bin/remsh") "/usr/bin/remsh")
|
10484
|
166 ((file-exists-p "/usr/local/bin/remsh") "/usr/local/bin/remsh")
|
|
167 ((file-exists-p "/usr/ucb/rsh") "/usr/ucb/rsh")
|
|
168 ((file-exists-p "/usr/bsd/rsh") "/usr/bsd/rsh")
|
10450
|
169 ((file-exists-p "/usr/local/bin/rsh") "/usr/local/bin/rsh")
|
12560
|
170 ((file-exists-p "/usr/bin/rcmd") "/usr/bin/rcmd")
|
|
171 ((file-exists-p "/bin/rcmd") "/bin/rcmd")
|
10484
|
172 ((file-exists-p "/bin/rsh") "/bin/rsh")
|
|
173 ((file-exists-p "/usr/bin/rsh") "/usr/bin/rsh")
|
43570
|
174 (t "rsh"))
|
57553
|
175 "File name for remote-shell program (often rsh or remsh)."
|
|
176 :group 'environment
|
|
177 :type 'file)
|
10450
|
178
|
97142
|
179 (defvar term-file-prefix "term/" "\
|
25538
|
180 If non-nil, Emacs startup does (load (concat term-file-prefix (getenv \"TERM\")))
|
88
|
181 You may set this variable to nil in your `.emacs' file if you do not wish
|
|
182 the terminal-initialization file to be loaded.")
|
|
183
|
57553
|
184 (defvar abbrev-file-name
|
97142
|
185 (convert-standard-filename "~/.abbrev_defs")
|
88
|
186 "*Default name of file to read abbrevs from.")
|
659
|
187
|
93975
|
188 ;; arch-tag: bae27ffb-9944-4c87-b569-30d4635a99e1
|
659
|
189 ;;; paths.el ends here
|