88
|
1 ;; Define pathnames for use by various Emacs commands.
|
|
2 ;; Copyright (C) 1986, 1988 Free Software Foundation, Inc.
|
|
3
|
|
4 ;; This file is part of GNU Emacs.
|
|
5
|
|
6 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
7 ;; it under the terms of the GNU General Public License as published by
|
|
8 ;; the Free Software Foundation; either version 1, or (at your option)
|
|
9 ;; any later version.
|
|
10
|
|
11 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
12 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14 ;; GNU General Public License for more details.
|
|
15
|
|
16 ;; You should have received a copy of the GNU General Public License
|
|
17 ;; along with GNU Emacs; see the file COPYING. If not, write to
|
|
18 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
19
|
|
20
|
|
21 ;; These are default settings for names of certain files and directories
|
|
22 ;; that Emacs needs to refer to from time to time.
|
|
23
|
|
24 ;; If these settings are not right, override them with `setq'
|
|
25 ;; in site-init.el. Do not change this file.
|
|
26
|
|
27 (defvar Info-directory-list
|
|
28 (list (expand-file-name "../info/" exec-directory))
|
|
29 "List of directories to search for Info documentation files.")
|
|
30
|
|
31 (defvar news-path "/usr/spool/news/"
|
|
32 "The root directory below which all news files are stored.")
|
|
33
|
|
34 (defvar news-inews-program
|
|
35 (cond ((file-exists-p "/usr/bin/inews") "/usr/bin/inews")
|
|
36 ((file-exists-p "/usr/local/inews") "/usr/local/inews")
|
|
37 ((file-exists-p "/usr/local/bin/inews") "/usr/local/bin/inews")
|
|
38 ((file-exists-p "/usr/lib/news/inews") "/usr/lib/news/inews")
|
|
39 (t "inews"))
|
|
40 "Program to post news.")
|
|
41
|
|
42 (defvar gnus-default-nntp-server ""
|
|
43 ;; set this to your local server
|
|
44 "The name of the host running an NNTP server.
|
89
|
45 If it is a string such as \":DIRECTORY\", then ~/DIRECTORY
|
|
46 is used as a news spool. `gnus-nntp-server' is initialised from NNTPSERVER
|
88
|
47 environment variable or, if none, this value.")
|
|
48
|
|
49 (defvar gnus-nntp-service "nntp"
|
|
50 "NNTP service name, usually \"nntp\" or 119).
|
89
|
51 Go to a local news spool if its value is nil, in which case `gnus-nntp-server'
|
|
52 should be set to `(system-name)'.")
|
88
|
53
|
|
54 (defvar gnus-your-domain nil
|
|
55 "Your domain name without your host name like: \"stars.flab.Fujitsu.CO.JP\"
|
89
|
56 The DOMAINNAME environment variable is used instead if defined. If
|
|
57 the function `system-name' returns a fully qualified domain name, there is no
|
88
|
58 need to define the name.")
|
|
59
|
|
60 (defvar gnus-your-organization ""
|
|
61 "Your organization like: \"Fujitsu Laboratories Ltd., Kawasaki, Japan.\"
|
|
62 The `ORGANIZATION' environment variable is used instead if defined.")
|
|
63
|
|
64 (defvar mh-progs
|
|
65 (cond ((file-directory-p "/usr/new/mh") "/usr/new/mh/")
|
|
66 ((file-directory-p "/usr/local/bin/mh") "/usr/local/bin/mh/")
|
|
67 ((file-directory-p "/usr/local/mh/") "/usr/local/mh/")
|
|
68 (t "/usr/local/bin/"))
|
|
69 "Directory containing MH commands")
|
|
70
|
|
71 (defvar mh-lib
|
|
72 (cond ((file-directory-p "/usr/new/lib/mh") "/usr/new/lib/mh/")
|
|
73 ((file-directory-p "/usr/local/lib/mh") "/usr/local/lib/mh/")
|
|
74 (t "/usr/local/bin/mh/"))
|
|
75 "Directory of MH library")
|
|
76
|
|
77 (defvar rmail-file-name "~/RMAIL"
|
|
78 "Name of user's primary mail file.")
|
|
79
|
|
80 (defvar gnus-startup-file "~/.newsrc"
|
|
81 "The file listing groups to which user is subscribed.
|
|
82 Will use `gnus-startup-file'-SERVER instead if exists.")
|
|
83
|
|
84 (defconst rmail-spool-directory
|
|
85 (if (memq system-type '(hpux usg-unix-v unisoft-unix rtu irix))
|
|
86 "/usr/mail/"
|
|
87 "/usr/spool/mail/")
|
|
88 "Name of directory used by system mailer for delivering new mail.
|
|
89 Its name should end with a slash.")
|
|
90
|
|
91 (defconst sendmail-program
|
|
92 (if (file-exists-p "/usr/lib/sendmail")
|
|
93 "/usr/lib/sendmail"
|
|
94 "fakemail") ;In ../etc, to interface to /bin/mail.
|
|
95 "Program used to send messages.")
|
|
96
|
|
97 (defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/")
|
|
98 "If non-nil, Emacs startup does (load (concat term-file-prefix (getenv \"TERM\")))
|
|
99 You may set this variable to nil in your `.emacs' file if you do not wish
|
|
100 the terminal-initialization file to be loaded.")
|
|
101
|
|
102 (defconst manual-program (if (eq system-type 'berkeley-unix)
|
|
103 "/usr/ucb/man" "/usr/bin/man")
|
|
104 "Program to run to print man pages.")
|
|
105
|
|
106 ;; Note that /usr/man/cat is not really right for this on sysV; nothing is,
|
|
107 ;; judging by the list of directories below. You can't get the dir
|
|
108 ;; for a section by appending the section number to any one prefix.
|
|
109 ;; But it turns out that a string that's wrong does no harm here.
|
|
110 (defconst manual-formatted-dir-prefix
|
|
111 (if (file-exists-p "/usr/man/cat.C") ;; Check for Xenix.
|
|
112 "/usr/man/cat." "/usr/man/cat")
|
|
113 "Prefix for directories containing formatted manual pages.
|
|
114 Append a section-number or section-name to get a directory name.")
|
|
115
|
|
116 (defconst manual-formatted-dirlist
|
|
117 (cond ((eq system-type 'hpux)
|
|
118 '("/usr/man/cat1" "/usr/man/cat2" "/usr/man/cat3"
|
|
119 "/usr/man/cat4" "/usr/man/cat5" "/usr/man/cat6"
|
|
120 "/usr/man/cat7" "/usr/man/cat1m" "/usr/man/cat8"
|
|
121 "/usr/local/man/cat1" "/usr/local/man/cat2" "/usr/local/man/cat3"
|
|
122 "/usr/local/man/cat4" "/usr/local/man/cat5" "/usr/local/man/cat6"
|
|
123 "/usr/local/man/cat7" "/usr/local/man/cat1m" "/usr/local/man/cat8"
|
|
124 "/usr/contrib/man/cat1" "/usr/contrib/man/cat2"
|
|
125 "/usr/contrib/man/cat3" "/usr/contrib/man/cat4"
|
|
126 "/usr/contrib/man/cat5" "/usr/contrib/man/cat6"
|
|
127 "/usr/contrib/man/cat7" "/usr/contrib/man/cat1m"
|
|
128 "/usr/contrib/man/cat8"))
|
|
129 ((file-exists-p "/usr/man/cat.C") ; Xenix
|
|
130 '("/usr/man/cat.C" "/usr/man/cat.CP" "/usr/man/cat.CT"
|
|
131 "/usr/man/cat.DOS/" "/usr/man/cat.F" "/usr/man/cat.HW"
|
|
132 "/usr/man/cat.M/" "/usr/man/cat.S" "/usr/man/cat.LOCAL"))
|
|
133 ((file-exists-p "/usr/man/cat3/cat3")
|
|
134 ;; This is for UMAX.
|
|
135 '("/usr/man/cat1" "/usr/man/cat2"
|
|
136 "/usr/man/cat3" "/usr/man/cat3/cat3"
|
|
137 "/usr/man/cat3/cat3b" "/usr/man/cat3/cat3c"
|
|
138 "/usr/man/cat3/cat3f" "/usr/man/cat3/cat3m"
|
|
139 "/usr/man/cat3/cat3n" "/usr/man/cat3/cat3p"
|
|
140 "/usr/man/cat3/cat3s" "/usr/man/cat3/cat3u"
|
|
141 "/usr/man/cat3/cat3x" "/usr/man/cat4"
|
|
142 "/usr/man/cat5" "/usr/man/cat6"
|
|
143 "/usr/man/cat7" "/usr/man/cat8"
|
|
144 "/usr/man/catl" "/usr/man/catn"))
|
|
145 ((file-exists-p "/usr/man/cat1")
|
|
146 '("/usr/man/cat1" "/usr/man/cat2" "/usr/man/cat3"
|
|
147 "/usr/man/cat4" "/usr/man/cat5" "/usr/man/cat6"
|
|
148 "/usr/man/cat7" "/usr/man/cat8" "/usr/man/catl" "/usr/man/catn"))
|
|
149 (t
|
|
150 '("/usr/catman/u_man/man1" "/usr/catman/u_man/man6"
|
|
151 "/usr/catman/p_man/man2" "/usr/catman/p_man/man3"
|
|
152 "/usr/catman/p_man/man4" "/usr/catman/p_man/man5"
|
|
153 "/usr/catman/a_man/man1" "/usr/catman/a_man/man7"
|
|
154 "/usr/catman/a_man/man8" "/usr/catman/local"
|
|
155 "/usr/catman/a_man/man8" "/usr/catman/local/man1"
|
|
156 "/usr/catman/local/man2" "/usr/catman/local/man3"
|
|
157 "/usr/catman/local/man4" "/usr/catman/local/man5"
|
|
158 "/usr/catman/local/man6" "/usr/catman/local/man7"
|
|
159 "/usr/catman/local/man8")))
|
|
160 "List of directories containing formatted manual pages.")
|
|
161
|
|
162 (defconst abbrev-file-name
|
|
163 (if (eq system-type 'vax-vms)
|
|
164 "~/abbrev.def"
|
|
165 "~/.abbrev_defs")
|
|
166 "*Default name of file to read abbrevs from.")
|