diff options
Diffstat (limited to 'lisp/paths.el')
| -rw-r--r-- | lisp/paths.el | 60 |
1 files changed, 1 insertions, 59 deletions
diff --git a/lisp/paths.el b/lisp/paths.el index 70b5ca5dbfb..f44a0e660fc 100644 --- a/lisp/paths.el +++ b/lisp/paths.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; paths.el --- define pathnames for use by various Emacs commands -*- no-byte-compile: t -*- | 1 | ;;; paths.el --- define pathnames for use by various Emacs commands -*- no-byte-compile: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1986, 1988, 1994, 1999-2012 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1986, 1988, 1994, 1999-2012 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Maintainer: FSF | 5 | ;; Maintainer: FSF |
| 6 | ;; Keywords: internal | 6 | ;; Keywords: internal |
| @@ -101,59 +101,6 @@ This variable `Info-default-directory-list' is used as the default | |||
| 101 | for initializing `Info-directory-list' when Info is started, unless | 101 | for initializing `Info-directory-list' when Info is started, unless |
| 102 | the environment variable INFOPATH is set.") | 102 | the environment variable INFOPATH is set.") |
| 103 | 103 | ||
| 104 | (defvar news-directory | ||
| 105 | (purecopy (if (file-exists-p "/usr/spool/news/") | ||
| 106 | "/usr/spool/news/" | ||
| 107 | "/var/spool/news/")) | ||
| 108 | "The root directory below which all news files are stored.") | ||
| 109 | (defvaralias 'news-path 'news-directory) | ||
| 110 | |||
| 111 | (defvar news-inews-program | ||
| 112 | (purecopy | ||
| 113 | (cond ((file-exists-p "/usr/bin/inews") "/usr/bin/inews") | ||
| 114 | ((file-exists-p "/usr/local/inews") "/usr/local/inews") | ||
| 115 | ((file-exists-p "/usr/local/bin/inews") "/usr/local/bin/inews") | ||
| 116 | ((file-exists-p "/usr/contrib/lib/news/inews") "/usr/contrib/lib/news/inews") | ||
| 117 | ((file-exists-p "/usr/lib/news/inews") "/usr/lib/news/inews") | ||
| 118 | (t "inews"))) | ||
| 119 | "Program to post news.") | ||
| 120 | |||
| 121 | ;; set this to your local server | ||
| 122 | (defvar gnus-default-nntp-server (purecopy "") "\ | ||
| 123 | The name of the host running an NNTP server. | ||
| 124 | The null string means use the local host as the server site.") | ||
| 125 | |||
| 126 | (defvar gnus-nntp-service (purecopy "nntp") "\ | ||
| 127 | NNTP service name, usually \"nntp\" or 119. | ||
| 128 | Go to a local news spool if its value is nil, in which case `gnus-nntp-server' | ||
| 129 | should be set to `(system-name)'.") | ||
| 130 | |||
| 131 | (defvar gnus-local-organization nil "\ | ||
| 132 | *The name of your organization, as a string. | ||
| 133 | The `ORGANIZATION' environment variable is used instead if defined.") | ||
| 134 | |||
| 135 | (defcustom rmail-file-name (purecopy "~/RMAIL") "\ | ||
| 136 | Name of user's primary mail file." | ||
| 137 | :type 'string | ||
| 138 | :group 'rmail | ||
| 139 | :version "21.1") | ||
| 140 | |||
| 141 | (defvar rmail-spool-directory | ||
| 142 | (purecopy | ||
| 143 | (cond ((file-exists-p "/var/mail") | ||
| 144 | ;; SVR4 and recent BSD are said to use this. | ||
| 145 | ;; Rather than trying to know precisely which systems use it, | ||
| 146 | ;; let's assume this dir is never used for anything else. | ||
| 147 | "/var/mail/") | ||
| 148 | ;; Many GNU/Linux systems use this name. | ||
| 149 | ((file-exists-p "/var/spool/mail") | ||
| 150 | "/var/spool/mail/") | ||
| 151 | ((memq system-type '(hpux usg-unix-v irix)) | ||
| 152 | "/usr/mail/") | ||
| 153 | (t "/usr/spool/mail/"))) | ||
| 154 | "Name of directory used by system mailer for delivering new mail. | ||
| 155 | Its name should end with a slash.") | ||
| 156 | |||
| 157 | (defcustom remote-shell-program | 104 | (defcustom remote-shell-program |
| 158 | (purecopy | 105 | (purecopy |
| 159 | (cond | 106 | (cond |
| @@ -180,9 +127,4 @@ Its name should end with a slash.") | |||
| 180 | :group 'environment | 127 | :group 'environment |
| 181 | :type 'file) | 128 | :type 'file) |
| 182 | 129 | ||
| 183 | (defvar term-file-prefix (purecopy "term/") "\ | ||
| 184 | If non-nil, Emacs startup does (load (concat term-file-prefix (getenv \"TERM\"))) | ||
| 185 | You may set this variable to nil in your `.emacs' file if you do not wish | ||
| 186 | the terminal-initialization file to be loaded.") | ||
| 187 | |||
| 188 | ;;; paths.el ends here | 130 | ;;; paths.el ends here |