|
|
1.1 ! root 1: ;; Define pathnames for use by various Emacs commands. ! 2: ;; Copyright (C) 1986, 1988 Free Software Foundation, Inc. ! 3: ! 4: ;; This file is part of GNU Emacs. ! 5: ! 6: ;; GNU Emacs is distributed in the hope that it will be useful, ! 7: ;; but WITHOUT ANY WARRANTY. No author or distributor ! 8: ;; accepts responsibility to anyone for the consequences of using it ! 9: ;; or for whether it serves any particular purpose or works at all, ! 10: ;; unless he says so in writing. Refer to the GNU Emacs General Public ! 11: ;; License for full details. ! 12: ! 13: ;; Everyone is granted permission to copy, modify and redistribute ! 14: ;; GNU Emacs, but only under the conditions described in the ! 15: ;; GNU Emacs General Public License. A copy of this license is ! 16: ;; supposed to have been given to you along with GNU Emacs so you ! 17: ;; can know your rights and responsibilities. It should be in a ! 18: ;; file named COPYING. Among other things, the copyright notice ! 19: ;; and this notice must be preserved on all copies. ! 20: ! 21: ! 22: ;; These are default settings for names of certain files and directories ! 23: ;; that Emacs needs to refer to from time to time. ! 24: ! 25: ;; If these settings are not right, override them with `setq' ! 26: ;; in site-init.el. Do not change this file. ! 27: ! 28: (defvar Info-directory (expand-file-name "../info/" exec-directory)) ! 29: ! 30: (defvar news-path "/var/spool/news/" ! 31: "The root directory below which all news files are stored.") ! 32: (defvar news-inews-program ! 33: (cond ((file-exists-p "/usr/bin/inews") "/usr/bin/inews") ! 34: ((file-exists-p "/usr/local/inews") "/usr/local/inews") ! 35: ((file-exists-p "/usr/local/bin/inews") "/usr/local/bin/inews") ! 36: ((file-exists-p "/usr/lib/news/inews") "/usr/lib/news/inews") ! 37: (t "inews")) ! 38: "Program to post news.") ! 39: ! 40: (defvar mh-progs ! 41: (cond ((file-exists-p "/usr/contrib/mh/bin") "/usr/contrib/mh/bin") ! 42: ((file-exists-p "/usr/new/mh") "/usr/new/mh/") ! 43: ((file-exists-p "/usr/local/bin/mh") "/usr/local/bin/mh/") ! 44: (t "/usr/local/mh/")) ! 45: "Directory containing MH commands") ! 46: ! 47: (defvar mh-lib ! 48: (cond ((file-exists-p "/usr/contrib/lib/mh") "/usr/contrib/lib/mh/") ! 49: ((file-exists-p "/usr/new/lib/mh") "/usr/new/lib/mh/") ! 50: ((file-exists-p "/usr/local/lib/mh") "/usr/local/lib/mh/") ! 51: (t "/usr/local/bin/mh/")) ! 52: "Directory of MH library") ! 53: ! 54: (defconst rmail-file-name "~/RMAIL" ! 55: "Name of user's primary mail file.") ! 56: ! 57: (defconst rmail-spool-directory ! 58: (if (memq system-type '(hpux usg-unix-v unisoft-unix rtu ! 59: silicon-graphics-unix)) ! 60: "/usr/mail/" ! 61: "/var/mail/") ! 62: "Name of directory used by system mailer for delivering new mail. ! 63: Its name should end with a slash.") ! 64: ! 65: (defconst sendmail-program ! 66: (if (file-exists-p "/usr/sbin/sendmail") ! 67: "/usr/sbin/sendmail" ! 68: "fakemail") ;In ../etc, to interface to /bin/mail. ! 69: "Program used to send messages.") ! 70: ! 71: (defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/") ! 72: "If non-nil, Emacs startup does (load (concat term-file-prefix (getenv \"TERM\"))) ! 73: You may set this variable to nil in your `.emacs' file if you do not wish ! 74: the terminal-initialization file to be loaded.") ! 75: ! 76: (defconst manual-program "/usr/bin/man" ! 77: "Program to run to print man pages.") ! 78: ! 79: ;; Note that /usr/man/cat is not really right for this on sysV; nothing is, ! 80: ;; judging by the list of directories below. You can't get the dir ! 81: ;; for a section by appending the section number to any one prefix. ! 82: ;; But it turns out that a string that's wrong does no harm here. ! 83: (defconst manual-formatted-dir-prefix ! 84: (if (file-exists-p "/usr/man/cat.C") ;; Check for Xenix. ! 85: "/usr/man/cat." "/usr/man/cat") ! 86: "Prefix for directories containing formatted manual pages. ! 87: Append a section-number or section-name to get a directory name.") ! 88: ! 89: (defconst manual-formatted-dirlist ! 90: (cond ((eq system-type 'hpux) ! 91: '("/usr/man/cat1" "/usr/man/cat2" "/usr/man/cat3" ! 92: "/usr/man/cat4" "/usr/man/cat5" "/usr/man/cat6" ! 93: "/usr/man/cat7" "/usr/man/cat1m" "/usr/man/cat8" ! 94: "/usr/local/man/cat1" "/usr/local/man/cat2" "/usr/local/man/cat3" ! 95: "/usr/local/man/cat4" "/usr/local/man/cat5" "/usr/local/man/cat6" ! 96: "/usr/local/man/cat7" "/usr/local/man/cat1m" "/usr/local/man/cat8" ! 97: "/usr/contrib/man/cat1" "/usr/contrib/man/cat2" ! 98: "/usr/contrib/man/cat3" "/usr/contrib/man/cat4" ! 99: "/usr/contrib/man/cat5" "/usr/contrib/man/cat6" ! 100: "/usr/contrib/man/cat7" "/usr/contrib/man/cat1m" ! 101: "/usr/contrib/man/cat8")) ! 102: ((file-exists-p "/usr/share/man") ; 4.4 bsd ! 103: '("/usr/share/man/cat1" "/usr/share/man/cat2" ! 104: "/usr/share/man/cat3" ! 105: "/usr/share/man/cat3f" ! 106: "/usr/share/man/cat4" ! 107: "/usr/share/man/cat5" "/usr/share/man/cat6" ! 108: "/usr/share/man/cat7" "/usr/share/man/cat8" ! 109: "/usr/contrib/man/cat1" "/usr/contrib/man/cat2" ! 110: "/usr/contrib/man/cat3" "/usr/contrib/man/cat4" ! 111: "/usr/contrib/man/cat5" "/usr/contrib/man/cat6" ! 112: "/usr/contrib/man/cat7" "/usr/contrib/man/cat8" ! 113: "/usr/local/man/cat1" "/usr/local/man/cat2" ! 114: "/usr/local/man/cat3" "/usr/local/man/cat4" ! 115: "/usr/local/man/cat5" "/usr/local/man/cat6" ! 116: "/usr/local/man/cat7" "/usr/local/man/cat8")) ! 117: ((file-exists-p "/usr/man/cat.C") ; Xenix ! 118: '("/usr/man/cat.C" "/usr/man/cat.CP" "/usr/man/cat.CT" ! 119: "/usr/man/cat.DOS/" "/usr/man/cat.F" "/usr/man/cat.HW" ! 120: "/usr/man/cat.M/" "/usr/man/cat.S" "/usr/man/cat.LOCAL")) ! 121: ((file-exists-p "/usr/man/cat1") ! 122: '("/usr/man/cat1" "/usr/man/cat2" "/usr/man/cat3" ! 123: "/usr/man/cat4" "/usr/man/cat5" "/usr/man/cat6" ! 124: "/usr/man/cat7" "/usr/man/cat8" "/usr/man/catl" "/usr/man/catn")) ! 125: (t ! 126: '("/usr/catman/u_man/man1" "/usr/catman/u_man/man6" ! 127: "/usr/catman/p_man/man2" "/usr/catman/p_man/man3" ! 128: "/usr/catman/p_man/man4" "/usr/catman/p_man/man5" ! 129: "/usr/catman/a_man/man1" "/usr/catman/a_man/man7" ! 130: "/usr/catman/a_man/man8" "/usr/catman/local"))) ! 131: "List of directories containing formatted manual pages.") ! 132: ! 133: (defconst abbrev-file-name ! 134: (if (eq system-type 'vax-vms) ! 135: "~/abbrev.def" ! 136: "~/.abbrev_defs") ! 137: "*Default name of file to read abbrevs from.")
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.