(xmenu_show): Don't look in menubar for core.height if no menu bar.
[bpt/emacs.git] / lisp / paths.el
CommitLineData
6594deb0
ER
1;;; paths.el --- define pathnames for use by various Emacs commands.
2
8f1204db 3;; Copyright (C) 1986, 1988, 1994 Free Software Foundation, Inc.
3a801d0c 4
e5167999 5;; Maintainer: FSF
d7b4d18f 6;; Keywords: internal
e5167999 7
a0824fec 8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
e5167999 12;; the Free Software Foundation; either version 2, or (at your option)
a0824fec 13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
21;; along with GNU Emacs; see the file COPYING. If not, write to
22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
e5167999 24;;; Commentary:
a0824fec 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
e5167999
ER
32;;; Code:
33
a755d8e5 34(defvar Info-default-directory-list
e562af69 35 (let ((start (list "/usr/local/info/"
540dde41
RS
36 "/usr/local/lib/info/"))
37 (configdir (file-name-as-directory configure-info-directory)))
38 (or (member configdir start)
39 (setq start (nconc start (list configdir))))
e562af69
RS
40 (or (member (expand-file-name "../info/" data-directory) start)
41 (setq start
42 (nconc start
43 (list (expand-file-name "../info/" data-directory)))))
44 start)
feea21d1
RS
45 "List of directories to search for Info documentation files.
46They are searched in the order they are given in this list.
47Therefore, the directory of Info files that come with Emacs
48normally should come last (so that local files override standard ones).")
a0824fec 49
50(defvar news-path "/usr/spool/news/"
51 "The root directory below which all news files are stored.")
52
53(defvar news-inews-program
54 (cond ((file-exists-p "/usr/bin/inews") "/usr/bin/inews")
55 ((file-exists-p "/usr/local/inews") "/usr/local/inews")
56 ((file-exists-p "/usr/local/bin/inews") "/usr/local/bin/inews")
57 ((file-exists-p "/usr/lib/news/inews") "/usr/lib/news/inews")
58 (t "inews"))
59 "Program to post news.")
60
61(defvar gnus-default-nntp-server ""
62 ;; set this to your local server
63 "The name of the host running an NNTP server.
527a0f36 64If it is a string such as \":DIRECTORY\", then ~/DIRECTORY
65is used as a news spool. `gnus-nntp-server' is initialised from NNTPSERVER
a0824fec 66environment variable or, if none, this value.")
67
68(defvar gnus-nntp-service "nntp"
69 "NNTP service name, usually \"nntp\" or 119).
527a0f36 70Go to a local news spool if its value is nil, in which case `gnus-nntp-server'
71should be set to `(system-name)'.")
a0824fec 72
4c149073 73(defvar gnus-local-domain nil
fe9e6906
RS
74 "*Your domain name without a host name: for example, \"ai.mit.edu\".
75The DOMAINNAME environment variable is used instead if defined.
76If the function `system-name' returns a fully qualified domain name,
77there is no need to set this variable.")
a0824fec 78
fe9e6906
RS
79(defvar gnus-local-organization nil
80 "*The name of your organization, as a string.
a0824fec 81The `ORGANIZATION' environment variable is used instead if defined.")
82
a0824fec 83(defvar gnus-startup-file "~/.newsrc"
84 "The file listing groups to which user is subscribed.
85Will use `gnus-startup-file'-SERVER instead if exists.")
86
5833af3a
RS
87(defvar rmail-file-name "~/RMAIL"
88 "Name of user's primary mail file.")
89
a0824fec 90(defconst rmail-spool-directory
d9fc020b
RS
91 (cond ((string-match "^[^-]+-[^-]+-sco3.2v4" system-configuration)
92 "/usr/spool/mail/")
93 ((memq system-type '(dgux hpux usg-unix-v unisoft-unix rtu irix))
1eff7356
RM
94 "/usr/mail/")
95 ((eq system-type 'netbsd)
96 "/var/mail/")
97 (t "/usr/spool/mail/"))
a0824fec 98 "Name of directory used by system mailer for delivering new mail.
99Its name should end with a slash.")
100
101(defconst sendmail-program
9c85ef9f
RS
102 (cond
103 ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
104 ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail")
105 ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail")
106 (t "fakemail")) ;In ../etc, to interface to /bin/mail.
a0824fec 107 "Program used to send messages.")
108
109(defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/")
110 "If non-nil, Emacs startup does (load (concat term-file-prefix (getenv \"TERM\")))
111You may set this variable to nil in your `.emacs' file if you do not wish
112the terminal-initialization file to be loaded.")
113
a0824fec 114(defconst abbrev-file-name
115 (if (eq system-type 'vax-vms)
116 "~/abbrev.def"
117 "~/.abbrev_defs")
118 "*Default name of file to read abbrevs from.")
6594deb0
ER
119
120;;; paths.el ends here