]> code.delx.au - gnu-emacs/blobdiff - lisp/paths.el
Fix typos.
[gnu-emacs] / lisp / paths.el
index 78d4ff0acfad28e1cb6f2a3517c35ec052271e9f..f0d5a8d5cd9cd856531a081e14ee6601e223bcbb 100644 (file)
@@ -1,4 +1,4 @@
-;;; paths.el --- define pathnames for use by various Emacs commands
+;;; paths.el --- define pathnames for use by various Emacs commands -*- no-byte-compile: t -*-
 
 ;; Copyright (C) 1986, 1988, 1994, 1999, 2000 Free Software Foundation, Inc.
 
@@ -130,10 +130,6 @@ should be set to `(system-name)'.")
 *The name of your organization, as a string.
 The `ORGANIZATION' environment variable is used instead if defined.")
 
-(defvar gnus-startup-file "~/.newsrc" "\
-The file listing groups to which user is subscribed.
-Will use `gnus-startup-file'-SERVER instead if exists.")
-
 (defcustom rmail-file-name "~/RMAIL"
   "*Name of user's primary mail file."
   :type 'string
@@ -143,7 +139,7 @@ Will use `gnus-startup-file'-SERVER instead if exists.")
 (defconst rmail-spool-directory
   (cond ((string-match "^[^-]+-[^-]+-sco3.2v4" system-configuration)
         "/usr/spool/mail/")
-       ;; On The Bull DPX/2 /usr/spool/mail is used although 
+       ;; On The Bull DPX/2 /usr/spool/mail is used although
        ;; it is usg-unix-v.
        ((string-match "^m68k-bull-sysv3" system-configuration)
         "/usr/spool/mail/")
@@ -189,14 +185,15 @@ Its name should end with a slash.")
    ((file-exists-p "/bin/rcmd") "/bin/rcmd")
    ((file-exists-p "/bin/rsh") "/bin/rsh")
    ((file-exists-p "/usr/bin/rsh") "/usr/bin/rsh")
-   (t "rsh")))
+   (t "rsh"))
+  "File name for remote-shell program (often rsh or remsh).")
 
 (defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/") "\
 If non-nil, Emacs startup does (load (concat term-file-prefix (getenv \"TERM\")))
 You may set this variable to nil in your `.emacs' file if you do not wish
 the terminal-initialization file to be loaded.")
 
-(defconst abbrev-file-name 
+(defconst abbrev-file-name
   (if (eq system-type 'vax-vms)
       "~/abbrev.def"
     (convert-standard-filename "~/.abbrev_defs"))