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
|
177
|
28 (list "/usr/local/lib/info/"
|
|
29 (expand-file-name "../info/" exec-directory))
|
88
|
30 "List of directories to search for Info documentation files.")
|
|
31
|
|
32 (defvar news-path "/usr/spool/news/"
|
|
33 "The root directory below which all news files are stored.")
|
|
34
|
|
35 (defvar news-inews-program
|
|
36 (cond ((file-exists-p "/usr/bin/inews") "/usr/bin/inews")
|
|
37 ((file-exists-p "/usr/local/inews") "/usr/local/inews")
|
|
38 ((file-exists-p "/usr/local/bin/inews") "/usr/local/bin/inews")
|
|
39 ((file-exists-p "/usr/lib/news/inews") "/usr/lib/news/inews")
|
|
40 (t "inews"))
|
|
41 "Program to post news.")
|
|
42
|
|
43 (defvar gnus-default-nntp-server ""
|
|
44 ;; set this to your local server
|
|
45 "The name of the host running an NNTP server.
|
89
|
46 If it is a string such as \":DIRECTORY\", then ~/DIRECTORY
|
|
47 is used as a news spool. `gnus-nntp-server' is initialised from NNTPSERVER
|
88
|
48 environment variable or, if none, this value.")
|
|
49
|
|
50 (defvar gnus-nntp-service "nntp"
|
|
51 "NNTP service name, usually \"nntp\" or 119).
|
89
|
52 Go to a local news spool if its value is nil, in which case `gnus-nntp-server'
|
|
53 should be set to `(system-name)'.")
|
88
|
54
|
|
55 (defvar gnus-your-domain nil
|
|
56 "Your domain name without your host name like: \"stars.flab.Fujitsu.CO.JP\"
|
89
|
57 The DOMAINNAME environment variable is used instead if defined. If
|
|
58 the function `system-name' returns a fully qualified domain name, there is no
|
88
|
59 need to define the name.")
|
|
60
|
|
61 (defvar gnus-your-organization ""
|
|
62 "Your organization like: \"Fujitsu Laboratories Ltd., Kawasaki, Japan.\"
|
|
63 The `ORGANIZATION' environment variable is used instead if defined.")
|
|
64
|
|
65 (defvar mh-progs
|
|
66 (cond ((file-directory-p "/usr/new/mh") "/usr/new/mh/")
|
|
67 ((file-directory-p "/usr/local/bin/mh") "/usr/local/bin/mh/")
|
|
68 ((file-directory-p "/usr/local/mh/") "/usr/local/mh/")
|
|
69 (t "/usr/local/bin/"))
|
|
70 "Directory containing MH commands")
|
|
71
|
|
72 (defvar mh-lib
|
|
73 (cond ((file-directory-p "/usr/new/lib/mh") "/usr/new/lib/mh/")
|
|
74 ((file-directory-p "/usr/local/lib/mh") "/usr/local/lib/mh/")
|
|
75 (t "/usr/local/bin/mh/"))
|
|
76 "Directory of MH library")
|
|
77
|
|
78 (defvar rmail-file-name "~/RMAIL"
|
|
79 "Name of user's primary mail file.")
|
|
80
|
|
81 (defvar gnus-startup-file "~/.newsrc"
|
|
82 "The file listing groups to which user is subscribed.
|
|
83 Will use `gnus-startup-file'-SERVER instead if exists.")
|
|
84
|
|
85 (defconst rmail-spool-directory
|
|
86 (if (memq system-type '(hpux usg-unix-v unisoft-unix rtu irix))
|
|
87 "/usr/mail/"
|
|
88 "/usr/spool/mail/")
|
|
89 "Name of directory used by system mailer for delivering new mail.
|
|
90 Its name should end with a slash.")
|
|
91
|
|
92 (defconst sendmail-program
|
|
93 (if (file-exists-p "/usr/lib/sendmail")
|
|
94 "/usr/lib/sendmail"
|
|
95 "fakemail") ;In ../etc, to interface to /bin/mail.
|
|
96 "Program used to send messages.")
|
|
97
|
|
98 (defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/")
|
|
99 "If non-nil, Emacs startup does (load (concat term-file-prefix (getenv \"TERM\")))
|
|
100 You may set this variable to nil in your `.emacs' file if you do not wish
|
|
101 the terminal-initialization file to be loaded.")
|
|
102
|
|
103 (defconst manual-program (if (eq system-type 'berkeley-unix)
|
|
104 "/usr/ucb/man" "/usr/bin/man")
|
|
105 "Program to run to print man pages.")
|
|
106
|
|
107 ;; Note that /usr/man/cat is not really right for this on sysV; nothing is,
|
|
108 ;; judging by the list of directories below. You can't get the dir
|
|
109 ;; for a section by appending the section number to any one prefix.
|
|
110 ;; But it turns out that a string that's wrong does no harm here.
|
|
111 (defconst manual-formatted-dir-prefix
|
|
112 (if (file-exists-p "/usr/man/cat.C") ;; Check for Xenix.
|
|
113 "/usr/man/cat." "/usr/man/cat")
|
|
114 "Prefix for directories containing formatted manual pages.
|
|
115 Append a section-number or section-name to get a directory name.")
|
|
116
|
|
117 (defconst manual-formatted-dirlist
|
|
118 (cond ((eq system-type 'hpux)
|
|
119 '("/usr/man/cat1" "/usr/man/cat2" "/usr/man/cat3"
|
|
120 "/usr/man/cat4" "/usr/man/cat5" "/usr/man/cat6"
|
|
121 "/usr/man/cat7" "/usr/man/cat1m" "/usr/man/cat8"
|
|
122 "/usr/local/man/cat1" "/usr/local/man/cat2" "/usr/local/man/cat3"
|
|
123 "/usr/local/man/cat4" "/usr/local/man/cat5" "/usr/local/man/cat6"
|
|
124 "/usr/local/man/cat7" "/usr/local/man/cat1m" "/usr/local/man/cat8"
|
|
125 "/usr/contrib/man/cat1" "/usr/contrib/man/cat2"
|
|
126 "/usr/contrib/man/cat3" "/usr/contrib/man/cat4"
|
|
127 "/usr/contrib/man/cat5" "/usr/contrib/man/cat6"
|
|
128 "/usr/contrib/man/cat7" "/usr/contrib/man/cat1m"
|
|
129 "/usr/contrib/man/cat8"))
|
|
130 ((file-exists-p "/usr/man/cat.C") ; Xenix
|
|
131 '("/usr/man/cat.C" "/usr/man/cat.CP" "/usr/man/cat.CT"
|
|
132 "/usr/man/cat.DOS/" "/usr/man/cat.F" "/usr/man/cat.HW"
|
|
133 "/usr/man/cat.M/" "/usr/man/cat.S" "/usr/man/cat.LOCAL"))
|
|
134 ((file-exists-p "/usr/man/cat3/cat3")
|
|
135 ;; This is for UMAX.
|
|
136 '("/usr/man/cat1" "/usr/man/cat2"
|
|
137 "/usr/man/cat3" "/usr/man/cat3/cat3"
|
|
138 "/usr/man/cat3/cat3b" "/usr/man/cat3/cat3c"
|
|
139 "/usr/man/cat3/cat3f" "/usr/man/cat3/cat3m"
|
|
140 "/usr/man/cat3/cat3n" "/usr/man/cat3/cat3p"
|
|
141 "/usr/man/cat3/cat3s" "/usr/man/cat3/cat3u"
|
|
142 "/usr/man/cat3/cat3x" "/usr/man/cat4"
|
|
143 "/usr/man/cat5" "/usr/man/cat6"
|
|
144 "/usr/man/cat7" "/usr/man/cat8"
|
|
145 "/usr/man/catl" "/usr/man/catn"))
|
|
146 ((file-exists-p "/usr/man/cat1")
|
|
147 '("/usr/man/cat1" "/usr/man/cat2" "/usr/man/cat3"
|
|
148 "/usr/man/cat4" "/usr/man/cat5" "/usr/man/cat6"
|
|
149 "/usr/man/cat7" "/usr/man/cat8" "/usr/man/catl" "/usr/man/catn"))
|
|
150 (t
|
|
151 '("/usr/catman/u_man/man1" "/usr/catman/u_man/man6"
|
|
152 "/usr/catman/p_man/man2" "/usr/catman/p_man/man3"
|
|
153 "/usr/catman/p_man/man4" "/usr/catman/p_man/man5"
|
|
154 "/usr/catman/a_man/man1" "/usr/catman/a_man/man7"
|
|
155 "/usr/catman/a_man/man8" "/usr/catman/local"
|
|
156 "/usr/catman/a_man/man8" "/usr/catman/local/man1"
|
|
157 "/usr/catman/local/man2" "/usr/catman/local/man3"
|
|
158 "/usr/catman/local/man4" "/usr/catman/local/man5"
|
|
159 "/usr/catman/local/man6" "/usr/catman/local/man7"
|
|
160 "/usr/catman/local/man8")))
|
|
161 "List of directories containing formatted manual pages.")
|
|
162
|
|
163 (defconst abbrev-file-name
|
|
164 (if (eq system-type 'vax-vms)
|
|
165 "~/abbrev.def"
|
|
166 "~/.abbrev_defs")
|
|
167 "*Default name of file to read abbrevs from.")
|