X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/b33e350ab60970ed54b6c0f3d6862d8796c33810..96439b6aabaca49a1fb43bf5d526e82f12b0924b:/lisp/paths.el diff --git a/lisp/paths.el b/lisp/paths.el index 12292e2bb1..96536a1b4a 100644 --- a/lisp/paths.el +++ b/lisp/paths.el @@ -18,8 +18,9 @@ ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs; see the file COPYING. If not, write to -;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;; along with GNU Emacs; see the file COPYING. If not, write to the +;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, +;; Boston, MA 02111-1307, USA. ;;; Commentary: @@ -43,10 +44,15 @@ (configdir (file-name-as-directory configure-info-directory))) (setq start (nconc start (list configdir))) start) - "List of directories to search for Info documentation files. -They are searched in the order they are given in this list. + "Default list of directories to search for Info documentation files. +They are searched in the order they are given in the list. Therefore, the directory of Info files that come with Emacs -normally should come last (so that local files override standard ones).") +normally should come last (so that local files override standard ones). + +Once Info is started, the list of directories to search +comes from the variable `Info-directory-list'. +This variable `Info-default-directory-list' is used as the default +for initializing `Info-directory-list' when Info is started.") (defvar news-path (if (file-exists-p "/usr/spool/news/") @@ -58,6 +64,7 @@ normally should come last (so that local files override standard ones).") (cond ((file-exists-p "/usr/bin/inews") "/usr/bin/inews") ((file-exists-p "/usr/local/inews") "/usr/local/inews") ((file-exists-p "/usr/local/bin/inews") "/usr/local/bin/inews") + ((file-exists-p "/usr/contrib/lib/news/inews") "/usr/contrib/lib/news/inews") ((file-exists-p "/usr/lib/news/inews") "/usr/lib/news/inews") (t "inews")) "Program to post news.") @@ -72,12 +79,6 @@ The null string means use the local host as the server site.") Go to a local news spool if its value is nil, in which case `gnus-nntp-server' should be set to `(system-name)'.") -(defvar gnus-local-domain nil - "*Your domain name without a host name: for example, \"ai.mit.edu\". -The DOMAINNAME environment variable is used instead if defined. -If the function `system-name' returns a fully qualified domain name, -there is no need to set this variable.") - (defvar gnus-local-organization nil "*The name of your organization, as a string. The `ORGANIZATION' environment variable is used instead if defined.")