Mercurial > emacs
annotate lisp/paths.el @ 5020:94de08fd8a7c
(Fnext_single_property_change): Fix missing \n\.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Mon, 15 Nov 1993 06:41:45 +0000 |
| parents | a2d961cb63b0 |
| children | c9578602cc61 |
| rev | line source |
|---|---|
|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
444
diff
changeset
|
1 ;;; paths.el --- define pathnames for use by various Emacs commands. |
|
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
444
diff
changeset
|
2 |
|
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
3 ;; Copyright (C) 1986, 1988 Free Software Foundation, Inc. |
|
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
4 |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
5 ;; Maintainer: FSF |
|
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: internal |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
7 |
| 88 | 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 | |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
| 88 | 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 | |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
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
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
32 ;;; Code: |
|
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
33 |
| 390 | 34 (defvar Info-default-directory-list |
|
3211
4a1a003ded62
(Info-default-directory-list): Take out ../../info.
Richard M. Stallman <rms@gnu.org>
parents:
3132
diff
changeset
|
35 (let ((start (list "/usr/local/info/" |
| 3214 | 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)))) | |
|
3211
4a1a003ded62
(Info-default-directory-list): Take out ../../info.
Richard M. Stallman <rms@gnu.org>
parents:
3132
diff
changeset
|
40 (or (member (expand-file-name "../info/" data-directory) start) |
|
4a1a003ded62
(Info-default-directory-list): Take out ../../info.
Richard M. Stallman <rms@gnu.org>
parents:
3132
diff
changeset
|
41 (setq start |
|
4a1a003ded62
(Info-default-directory-list): Take out ../../info.
Richard M. Stallman <rms@gnu.org>
parents:
3132
diff
changeset
|
42 (nconc start |
|
4a1a003ded62
(Info-default-directory-list): Take out ../../info.
Richard M. Stallman <rms@gnu.org>
parents:
3132
diff
changeset
|
43 (list (expand-file-name "../info/" data-directory))))) |
|
4a1a003ded62
(Info-default-directory-list): Take out ../../info.
Richard M. Stallman <rms@gnu.org>
parents:
3132
diff
changeset
|
44 start) |
| 88 | 45 "List of directories to search for Info documentation files.") |
| 46 | |
| 47 (defvar news-path "/usr/spool/news/" | |
| 48 "The root directory below which all news files are stored.") | |
| 49 | |
| 50 (defvar news-inews-program | |
| 51 (cond ((file-exists-p "/usr/bin/inews") "/usr/bin/inews") | |
| 52 ((file-exists-p "/usr/local/inews") "/usr/local/inews") | |
| 53 ((file-exists-p "/usr/local/bin/inews") "/usr/local/bin/inews") | |
| 54 ((file-exists-p "/usr/lib/news/inews") "/usr/lib/news/inews") | |
| 55 (t "inews")) | |
| 56 "Program to post news.") | |
| 57 | |
| 58 (defvar gnus-default-nntp-server "" | |
| 59 ;; set this to your local server | |
| 60 "The name of the host running an NNTP server. | |
| 89 | 61 If it is a string such as \":DIRECTORY\", then ~/DIRECTORY |
| 62 is used as a news spool. `gnus-nntp-server' is initialised from NNTPSERVER | |
| 88 | 63 environment variable or, if none, this value.") |
| 64 | |
| 65 (defvar gnus-nntp-service "nntp" | |
| 66 "NNTP service name, usually \"nntp\" or 119). | |
| 89 | 67 Go to a local news spool if its value is nil, in which case `gnus-nntp-server' |
| 68 should be set to `(system-name)'.") | |
| 88 | 69 |
|
3132
e32cef1a19b7
(gnus-local-organization): Renamed from ...-your-...
Richard M. Stallman <rms@gnu.org>
parents:
3110
diff
changeset
|
70 (defvar gnus-local-domain nil |
|
3252
4728125f5873
(gnus-local-organization): Initially nil.
Richard M. Stallman <rms@gnu.org>
parents:
3214
diff
changeset
|
71 "*Your domain name without a host name: for example, \"ai.mit.edu\". |
|
4728125f5873
(gnus-local-organization): Initially nil.
Richard M. Stallman <rms@gnu.org>
parents:
3214
diff
changeset
|
72 The DOMAINNAME environment variable is used instead if defined. |
|
4728125f5873
(gnus-local-organization): Initially nil.
Richard M. Stallman <rms@gnu.org>
parents:
3214
diff
changeset
|
73 If the function `system-name' returns a fully qualified domain name, |
|
4728125f5873
(gnus-local-organization): Initially nil.
Richard M. Stallman <rms@gnu.org>
parents:
3214
diff
changeset
|
74 there is no need to set this variable.") |
| 88 | 75 |
|
3252
4728125f5873
(gnus-local-organization): Initially nil.
Richard M. Stallman <rms@gnu.org>
parents:
3214
diff
changeset
|
76 (defvar gnus-local-organization nil |
|
4728125f5873
(gnus-local-organization): Initially nil.
Richard M. Stallman <rms@gnu.org>
parents:
3214
diff
changeset
|
77 "*The name of your organization, as a string. |
| 88 | 78 The `ORGANIZATION' environment variable is used instead if defined.") |
| 79 | |
| 80 (defvar mh-progs | |
| 855 | 81 (cond ((file-directory-p "/usr/bin/mh/") "/usr/bin/mh/") ;Ultrix 4.2 |
| 82 ((file-directory-p "/usr/new/mh/") "/usr/new/mh/") ;Ultrix <4.2 | |
| 83 ((file-directory-p "/usr/local/bin/mh/") "/usr/local/bin/mh/") | |
| 84 ((file-directory-p "/usr/local/mh/") "/usr/local/mh/") | |
| 85 (t "/usr/local/bin/")) | |
| 86 "Directory containing MH commands.") | |
| 88 | 87 |
| 88 (defvar mh-lib | |
| 855 | 89 (cond ((file-directory-p "/usr/lib/mh/") "/usr/lib/mh/") ;Ultrix 4.2 |
| 90 ((file-directory-p "/usr/new/lib/mh/") "/usr/new/lib/mh/") ;Ultrix <4.2 | |
| 91 ((file-directory-p "/usr/local/lib/mh/") "/usr/local/lib/mh/") | |
| 92 (t "/usr/local/bin/mh/")) | |
| 93 "Directory of MH library.") | |
| 88 | 94 |
| 95 (defvar rmail-file-name "~/RMAIL" | |
| 96 "Name of user's primary mail file.") | |
| 97 | |
| 98 (defvar gnus-startup-file "~/.newsrc" | |
| 99 "The file listing groups to which user is subscribed. | |
| 100 Will use `gnus-startup-file'-SERVER instead if exists.") | |
| 101 | |
| 102 (defconst rmail-spool-directory | |
|
4691
4d3426d8b92a
(rmail-spool-directory): Use "/var/mail/" if system-type is netbsd.
Roland McGrath <roland@gnu.org>
parents:
4454
diff
changeset
|
103 (cond ((memq system-type '(dgux-unix hpux usg-unix-v unisoft-unix rtu |
|
5002
a2d961cb63b0
(rmail-spool-directory): Check for irix, not silicon-graphic-unix.
Richard M. Stallman <rms@gnu.org>
parents:
4691
diff
changeset
|
104 irix)) |
|
4691
4d3426d8b92a
(rmail-spool-directory): Use "/var/mail/" if system-type is netbsd.
Roland McGrath <roland@gnu.org>
parents:
4454
diff
changeset
|
105 "/usr/mail/") |
|
4d3426d8b92a
(rmail-spool-directory): Use "/var/mail/" if system-type is netbsd.
Roland McGrath <roland@gnu.org>
parents:
4454
diff
changeset
|
106 ((eq system-type 'netbsd) |
|
4d3426d8b92a
(rmail-spool-directory): Use "/var/mail/" if system-type is netbsd.
Roland McGrath <roland@gnu.org>
parents:
4454
diff
changeset
|
107 "/var/mail/") |
|
4d3426d8b92a
(rmail-spool-directory): Use "/var/mail/" if system-type is netbsd.
Roland McGrath <roland@gnu.org>
parents:
4454
diff
changeset
|
108 (t "/usr/spool/mail/")) |
| 88 | 109 "Name of directory used by system mailer for delivering new mail. |
| 110 Its name should end with a slash.") | |
| 111 | |
| 112 (defconst sendmail-program | |
|
4454
5acc13b477c7
(sendmail-program): Try /usr/sbin/sendmail.el also.
Richard M. Stallman <rms@gnu.org>
parents:
3252
diff
changeset
|
113 (cond |
|
5acc13b477c7
(sendmail-program): Try /usr/sbin/sendmail.el also.
Richard M. Stallman <rms@gnu.org>
parents:
3252
diff
changeset
|
114 ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail") |
|
5acc13b477c7
(sendmail-program): Try /usr/sbin/sendmail.el also.
Richard M. Stallman <rms@gnu.org>
parents:
3252
diff
changeset
|
115 ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail") |
|
5acc13b477c7
(sendmail-program): Try /usr/sbin/sendmail.el also.
Richard M. Stallman <rms@gnu.org>
parents:
3252
diff
changeset
|
116 ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail") |
|
5acc13b477c7
(sendmail-program): Try /usr/sbin/sendmail.el also.
Richard M. Stallman <rms@gnu.org>
parents:
3252
diff
changeset
|
117 (t "fakemail")) ;In ../etc, to interface to /bin/mail. |
| 88 | 118 "Program used to send messages.") |
| 119 | |
| 120 (defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/") | |
| 121 "If non-nil, Emacs startup does (load (concat term-file-prefix (getenv \"TERM\"))) | |
| 122 You may set this variable to nil in your `.emacs' file if you do not wish | |
| 123 the terminal-initialization file to be loaded.") | |
| 124 | |
|
1489
c3d069d83cc6
(manual-program): Always use /usr/ucb/man if that exists.
Richard M. Stallman <rms@gnu.org>
parents:
855
diff
changeset
|
125 ;; Solaris 2 has both of these files; prefer /usr/ucb/man |
|
c3d069d83cc6
(manual-program): Always use /usr/ucb/man if that exists.
Richard M. Stallman <rms@gnu.org>
parents:
855
diff
changeset
|
126 ;; because the other has nonstandard argument conventions. |
|
c3d069d83cc6
(manual-program): Always use /usr/ucb/man if that exists.
Richard M. Stallman <rms@gnu.org>
parents:
855
diff
changeset
|
127 (defconst manual-program (if (file-exists-p "/usr/ucb/man") |
| 88 | 128 "/usr/ucb/man" "/usr/bin/man") |
| 129 "Program to run to print man pages.") | |
| 130 | |
| 131 (defconst abbrev-file-name | |
| 132 (if (eq system-type 'vax-vms) | |
| 133 "~/abbrev.def" | |
| 134 "~/.abbrev_defs") | |
| 135 "*Default name of file to read abbrevs from.") | |
|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
444
diff
changeset
|
136 |
|
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
444
diff
changeset
|
137 ;;; paths.el ends here |
