Mercurial > emacs
comparison lisp/paths.el @ 807:4f28bd14272c
*** empty log message ***
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Thu, 16 Jul 1992 21:47:34 +0000 |
parents | 505130d1ddf8 |
children | 38b2499cb3e9 |
comparison
equal
deleted
inserted
replaced
806:d42e1151eed8 | 807:4f28bd14272c |
---|---|
1 ;;; paths.el --- define pathnames for use by various Emacs commands. | 1 ;;; paths.el --- define pathnames for use by various Emacs commands. |
2 | |
3 ;; Maintainer: FSF | |
4 ;; Last-Modified: 05 Dec 1991 | |
2 | 5 |
3 ;; Copyright (C) 1986, 1988 Free Software Foundation, Inc. | 6 ;; Copyright (C) 1986, 1988 Free Software Foundation, Inc. |
4 | 7 |
5 ;; This file is part of GNU Emacs. | 8 ;; This file is part of GNU Emacs. |
6 | 9 |
7 ;; GNU Emacs is free software; you can redistribute it and/or modify | 10 ;; GNU Emacs is free software; you can redistribute it and/or modify |
8 ;; it under the terms of the GNU General Public License as published by | 11 ;; it under the terms of the GNU General Public License as published by |
9 ;; the Free Software Foundation; either version 1, or (at your option) | 12 ;; the Free Software Foundation; either version 2, or (at your option) |
10 ;; any later version. | 13 ;; any later version. |
11 | 14 |
12 ;; GNU Emacs is distributed in the hope that it will be useful, | 15 ;; GNU Emacs is distributed in the hope that it will be useful, |
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | 16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | 19 |
17 ;; You should have received a copy of the GNU General Public License | 20 ;; You should have received a copy of the GNU General Public License |
18 ;; along with GNU Emacs; see the file COPYING. If not, write to | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to |
19 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
20 | 23 |
24 ;;; Commentary: | |
21 | 25 |
22 ;; These are default settings for names of certain files and directories | 26 ;; These are default settings for names of certain files and directories |
23 ;; that Emacs needs to refer to from time to time. | 27 ;; that Emacs needs to refer to from time to time. |
24 | 28 |
25 ;; If these settings are not right, override them with `setq' | 29 ;; If these settings are not right, override them with `setq' |
26 ;; in site-init.el. Do not change this file. | 30 ;; in site-init.el. Do not change this file. |
31 | |
32 ;;; Code: | |
27 | 33 |
28 (defvar Info-default-directory-list | 34 (defvar Info-default-directory-list |
29 (list "/usr/local/lib/info/" | 35 (list "/usr/local/lib/info/" |
30 (expand-file-name "../info/" data-directory)) | 36 (expand-file-name "../info/" data-directory)) |
31 "List of directories to search for Info documentation files.") | 37 "List of directories to search for Info documentation files.") |