]> code.delx.au - gnu-emacs/blobdiff - lisp/startup.el
*** empty log message ***
[gnu-emacs] / lisp / startup.el
index ccdc8804bd4f756b5d39a02653cde2fc13664ac5..5a0b63e906cb0804b0aef5bc60203b8bad3a8b43 100644 (file)
 ;; of these are also found in term/pc-win.el
 ;; -------------------------
 ;; FILE                      Visit FILE.
+;; -visit FILE
+;; --visit FILE
+;; -file FILE
+;; --file FILE
 ;;
 ;; -L DIRNAME                Add DIRNAME to load-path
 ;; -directory DIRNAME
 ;;
 ;; -eval FORM                Execute Emacs lisp form FORM.
 ;; --eval FORM
+;; -execute EXPR
+;; --execute EXPR
 ;;
 ;; -insert FILE              Insert the contents of FILE into buffer.
 ;; --insert FILE
@@ -296,13 +302,6 @@ is less convenient."
   :type '(choice (const :tag "none" nil) string)
   :group 'initialization)
 
-(defconst iso-8859-n-locale-regexp "8859[-_]?\\([1-49]\\)"
-  "Regexp that specifies when to enable an ISO 8859-N character set.
-We do that if this regexp matches the locale name
-specified by the LC_ALL, LC_CTYPE and LANG environment variables.
-The paren group in the regexp should match the specific character
-set number, N.")
-
 (defcustom mail-host-address nil
   "*Name of this machine, for purposes of naming users."
   :type '(choice (const nil) string)
@@ -329,47 +328,44 @@ from being initialized."
                 string)
   :group 'auto-save)
 
-(defvar locale-translation-file-name
-  (let ((files '("/usr/lib/X11/locale/locale.alias" ; e.g. X11R6.4
-                "/usr/X11R6/lib/X11/locale/locale.alias" ; e.g. RedHat 4.2
-                "/usr/openwin/lib/locale/locale.alias" ; e.g. Solaris 2.6
-                ;;
-                ;; The following name appears after the X-related names above,
-                ;; since the X-related names are what X actually uses.
-                "/usr/share/locale/locale.alias" ; GNU/Linux sans X
-                )))
-    (while (and files (not (file-exists-p (car files))))
-      (setq files (cdr files)))
-    (car files))
-  "*File name for the system's file of locale-name aliases, or nil if none.")
-
 (defvar init-file-debug nil)
 
 (defvar init-file-had-error nil)
 
+(defvar normal-top-level-add-subdirs-inode-list nil)
+
 (defun normal-top-level-add-subdirs-to-load-path ()
   "Add all subdirectories of current directory to `load-path'.
 More precisely, this uses only the subdirectories whose names
 start with letters or digits; it excludes any subdirectory named `RCS'
 or `CVS', and any subdirectory that contains a file named `.nosearch'."
   (let (dirs 
+       attrs
        (pending (list default-directory)))
     ;; This loop does a breadth-first tree walk on DIR's subtree,
     ;; putting each subdir into DIRS as its contents are examined.
     (while pending
       (setq dirs (cons (car pending) dirs))
       (setq pending (cdr pending))
+      (setq attrs (nthcdr 10 (file-attributes (car dirs))))
       (let ((contents (directory-files (car dirs)))
            (default-directory (car dirs)))
-       (while contents
-         (unless (member (car contents) '("." ".." "RCS" "CVS"))
-           (when (and (string-match "\\`[a-zA-Z0-9]" (car contents))
-                      (file-directory-p (car contents)))
-             (let ((expanded (expand-file-name (car contents))))
-               (unless (file-exists-p (expand-file-name ".nosearch"
-                                                        expanded))
-                 (setq pending (nconc pending (list expanded)))))))
-         (setq contents (cdr contents)))))
+       (unless (member attrs normal-top-level-add-subdirs-inode-list)
+         (setq normal-top-level-add-subdirs-inode-list
+               (cons attrs normal-top-level-add-subdirs-inode-list))
+         (while contents
+           (unless (member (car contents) '("." ".." "RCS" "CVS"))
+             (when (and (string-match "\\`[a-zA-Z0-9]" (car contents))
+                        ;; Avoid doing a `stat' when it isn't necessary
+                        ;; because that can cause trouble when an NFS server
+                        ;; is down.
+                        (not (string-match "\\.elc?\\'" (car contents)))
+                        (file-directory-p (car contents)))
+               (let ((expanded (expand-file-name (car contents))))
+                 (unless (file-exists-p (expand-file-name ".nosearch"
+                                                          expanded))
+                   (setq pending (nconc pending (list expanded)))))))
+           (setq contents (cdr contents))))))
     (normal-top-level-add-to-load-path (cdr (nreverse dirs)))))
 
 ;; This function is called from a subdirs.el file.
@@ -491,6 +487,9 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
                (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "SYS$SCRATCH:"))
               (t
                (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "/tmp")))))
+  (setq small-temporary-file-directory
+       (if (eq system-type 'ms-dos)
+           (getenv "TMPDIR")))
 
   ;; See if we should import version-control from the environment variable.
   (let ((vc (getenv "VERSION_CONTROL")))
@@ -505,45 +504,7 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
               (string= vc "simple"))
           (setq version-control 'never))))
 
-  (let ((ctype
-        ;; Use the first of these three envvars that has a nonempty value.
-        (or (let ((string (getenv "LC_ALL")))
-              (and (not (equal string "")) string))
-            (let ((string (getenv "LC_CTYPE")))
-              (and (not (equal string "")) string))
-            (let ((string (getenv "LANG")))
-              (and (not (equal string "")) string)))))
-    ;; Translate "swedish" into "sv_SE.ISO-8859-1", and so on,
-    ;; using the translation file that GNU/Linux systems have.
-    (and ctype
-        locale-translation-file-name
-        (not (string-match iso-8859-n-locale-regexp ctype))
-        (with-temp-buffer
-          (insert-file-contents locale-translation-file-name)
-          (if (re-search-forward
-               (concat "^" (regexp-quote ctype) ":?[ \t]+") nil t)
-              (setq ctype (buffer-substring (point)
-                                            (progn (end-of-line) (point)))))))
-    ;; Now see if the locale specifies an ISO 8859 character set.
-    (when (and ctype
-              (string-match iso-8859-n-locale-regexp ctype))
-      (let (charset (which (match-string 1 ctype)))
-       (if (equal "9" which)
-           (setq which "5"))
-       (setq charset (concat "latin-" which))
-       (when (string-match "latin-[12345]" charset)
-         ;; Set up for this character set.
-         ;; This is now the right way to do it
-         ;; for both unibyte and multibyte modes.
-         (set-language-environment charset)
-         (unless (or noninteractive (eq window-system 'x))
-           ;; Send those codes literally to a non-X terminal.
-           (when default-enable-multibyte-characters
-             ;; If this is nil, we are using single-byte characters,
-             ;; so the terminal coding system is irrelevant.
-             (set-terminal-coding-system
-              (intern (downcase charset)))))
-         (standard-display-european-internal)))))
+  (set-locale-environment nil)
 
   ;;! This has been commented out; I currently find the behavior when
   ;;! split-window-keep-point is nil disturbing, but if I can get used
@@ -551,6 +512,18 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
   ;;! ;; Choose a good default value for split-window-keep-point.
   ;;! (setq split-window-keep-point (> baud-rate 2400))
 
+  ;; Set the default strings to display in mode line for
+  ;; end-of-line formats that aren't native to this platform.
+  (cond
+   ((memq system-type '(ms-dos windows-nt emx))
+    (setq eol-mnemonic-unix "(Unix)")
+    (setq eol-mnemonic-mac  "(Mac)"))
+   ;; Mac-specific settings should come here, once there's a
+   ;; system-type symbol specific to MacOS.
+   (t  ; this is for Unix/GNU/Linux systems
+    (setq eol-mnemonic-dos  "(DOS)")
+    (setq eol-mnemonic-mac  "(Mac)")))
+
   ;; Read window system's init file if using a window system.
   (condition-case error
       (if (and window-system (not noninteractive))
@@ -683,20 +656,27 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
           (function
            (lambda ()
              (if init-file-user
-                 (progn
-                   (setq user-init-file 
+                 (let ((user-init-file-1
                          (cond 
                           ((eq system-type 'ms-dos)
                            (concat "~" init-file-user "/_emacs"))
                           ((eq system-type 'windows-nt)
-                           (if (file-exists-p "~/.emacs") 
+                           (if (directory-files "~" nil "^\\.emacs\\(\\.elc?\\)?$")
                                "~/.emacs"
                              "~/_emacs"))
                           ((eq system-type 'vax-vms) 
                            "sys$login:.emacs")
                           (t 
-                           (concat "~" init-file-user "/.emacs"))))
-                   (load user-init-file t t)
+                           (concat "~" init-file-user "/.emacs")))))
+                   ;; This tells `load' to store the file name found
+                   ;; into user-init-file.
+                   (setq user-init-file t)
+                   (load user-init-file-1 t t)
+                   ;; If we did not find the user's init file,
+                   ;; set user-init-file conclusively to nil;
+                   ;; don't let it be set from default.el.
+                   (if (eq user-init-file t)
+                       (setq user-init-file nil))
                    (or inhibit-default-init
                        (let ((inhibit-startup-message nil))
                          ;; Users are supposed to be told their rights.
@@ -753,6 +733,19 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
        (set-buffer "*scratch*")
        (if (eq major-mode 'fundamental-mode)
            (funcall initial-major-mode))))
+
+  ;; Register default TTY colors for the case the terminal hasn't a
+  ;; terminal init file.  The colors are good for xterm-color and the
+  ;; FreeBSD console (cons.*).  They should be sufficient for Linux
+  ;; too, I guess.
+  (or (eq window-system 'pc)   ; pc-win.el did this already
+      (let ((colors '("black" "red" "green" "yellow" "blue" "magenta"
+                     "cyan" "white"))
+           (i 0))
+       (while colors
+         (face-register-tty-color (car colors) i)
+         (setq colors (cdr colors) i (1+ i)))))
+  
   ;; Load library for our terminal type.
   ;; User init file can set term-file-prefix to nil to prevent this.
   (and term-file-prefix (not noninteractive) (not window-system)
@@ -772,9 +765,9 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
   (if noninteractive (kill-emacs t)))
 
 (defcustom initial-scratch-message "\
-This buffer is for notes you don't want to save, and for Lisp evaluation.
-If you want to create a file, visit that file with C-x C-f,
-then enter the text in that file's own buffer.
+;; This buffer is for notes you don't want to save, and for Lisp evaluation.
+;; If you want to create a file, visit that file with C-x C-f,
+;; then enter the text in that file's own buffer.
 
 "
   "Initial message displayed in *scratch* buffer at startup.
@@ -814,6 +807,9 @@ If this is nil, no message will be displayed."
                   "For information about the GNU Project and its goals, type C-h C-p."
                 (substitute-command-keys
                  "For information about the GNU Project and its goals, type \\[describe-project]."))))
+  (when (and (not noninteractive)
+            (memq window-system '(x w32)))
+    (make-mode-line-mouse-sensitive))
   (if (null command-line-args-left)
       (cond ((and (not inhibit-startup-message) (not noninteractive)
                  ;; Don't clobber a non-scratch buffer if init file
@@ -839,8 +835,8 @@ If this is nil, no message will be displayed."
             (setq window-setup-hook nil)
             ;; Do this now to avoid an annoying delay if the user
             ;; clicks the menu bar during the sit-for.
-            (if (memq window-system '(x w32))
-                (precompute-menubar-bindings))
+            (when (memq window-system '(x w32))
+              (precompute-menubar-bindings))
             (setq menubar-bindings-done t)
             (when (= (buffer-size) 0)
               (let ((buffer-undo-list t))
@@ -871,7 +867,7 @@ Getting New Versions        How to obtain the latest version of Emacs.
 ")
                             (insert "\n\n" (emacs-version)
                                     "
-Copyright (C) 1998 Free Software Foundation, Inc."))
+Copyright (C) 1999 Free Software Foundation, Inc."))
                         ;; If keys have their default meanings,
                         ;; use precomputed string to save lots of time.
                         (if (and (eq (key-binding "\C-h") 'help-command)
@@ -928,19 +924,21 @@ If you have no Meta key, you may instead type ESC followed by the character.)")
 
                         (insert "\n\n" (emacs-version)
                                 "
-Copyright (C) 1998 Free Software Foundation, Inc.")
+Copyright (C) 1999 Free Software Foundation, Inc.")
                         (if (and (eq (key-binding "\C-h\C-c") 'describe-copying)
                                  (eq (key-binding "\C-h\C-d") 'describe-distribution)
                                  (eq (key-binding "\C-h\C-w") 'describe-no-warranty))
                             (insert 
                              "\n
 GNU Emacs comes with ABSOLUTELY NO WARRANTY; type C-h C-w for full details.
-You may give out copies of Emacs; type C-h C-c to see the conditions.
+Emacs is Free Software--Free as in Freedom--so you can redistribute copies
+of Emacs and modify it; type C-h C-c to see the conditions.
 Type C-h C-d for information on getting the latest version.")
                           (insert (substitute-command-keys
                                    "\n
 GNU Emacs comes with ABSOLUTELY NO WARRANTY; type \\[describe-no-warranty] for full details.
-You may give out copies of Emacs; type \\[describe-copying] to see the conditions.
+Emacs is Free Software--Free as in Freedom--so you can redistribute copies
+of Emacs and modify it; type \\[describe-copying] to see the conditions.
 Type \\[describe-distribution] for information on getting the latest version."))))
                       (goto-char (point-min))
 
@@ -964,7 +962,8 @@ Type \\[describe-distribution] for information on getting the latest version."))
          ;; and long versions of what's on command-switch-alist.
          (longopts
           (append '(("--funcall") ("--load") ("--insert") ("--kill")
-                    ("--directory") ("--eval") ("--find-file") ("--visit"))
+                    ("--directory") ("--eval") ("--execute")
+                    ("--find-file") ("--visit") ("--file"))
                   (mapcar '(lambda (elt)
                              (list (concat "-" (car elt))))
                           command-switch-alist)))
@@ -1016,6 +1015,7 @@ Type \\[describe-distribution] for information on getting the latest version."))
                            (cons argval command-line-args-left)))
                       (funcall (cdr tem) argi))
                   (funcall (cdr tem) argi)))
+               
                ((or (string-equal argi "-f")  ;what the manual claims
                     (string-equal argi "-funcall")
                     (string-equal argi "-e")) ; what the source used to say
@@ -1026,13 +1026,16 @@ Type \\[describe-distribution] for information on getting the latest version."))
                 (if (arrayp (symbol-function tem))
                     (command-execute tem)
                   (funcall tem)))
-               ((string-equal argi "-eval")
+               
+               ((or (string-equal argi "-eval")
+                    (string-equal argi "-execute"))
                 (if argval
                     (setq tem argval)
                   (setq tem (car command-line-args-left))
                   (setq command-line-args-left (cdr command-line-args-left)))
                 (eval (read tem)))
                ;; Set the default directory as specified in -L.
+               
                ((or (string-equal argi "-L")
                     (string-equal argi "-directory"))
                 (if argval
@@ -1044,6 +1047,7 @@ Type \\[describe-distribution] for information on getting the latest version."))
                       (cons (expand-file-name tem) extra-load-path))
                 (setq load-path (append (nreverse extra-load-path)
                                         initial-load-path)))
+               
                ((or (string-equal argi "-l")
                     (string-equal argi "-load"))
                 (if argval
@@ -1056,6 +1060,7 @@ Type \\[describe-distribution] for information on getting the latest version."))
                   (if (file-exists-p (expand-file-name file))
                       (setq file (expand-file-name file)))
                   (load file nil t)))
+               
                ((string-equal argi "-insert")
                 (if argval
                     (setq tem argval)
@@ -1064,28 +1069,38 @@ Type \\[describe-distribution] for information on getting the latest version."))
                 (or (stringp tem)
                     (error "File name omitted from `-insert' option"))
                 (insert-file-contents (command-line-normalize-file-name tem)))
+               
                ((string-equal argi "-kill")
                 (kill-emacs t))
+               
                ((string-match "^\\+[0-9]+\\'" argi)
                 (setq line (string-to-int argi)))
+               
                ((setq tem (assoc argi command-line-x-option-alist))
                 ;; Ignore X-windows options and their args if not using X.
                 (setq command-line-args-left
                       (nthcdr (nth 1 tem) command-line-args-left)))
+               
                ((or (string-equal argi "-find-file")
+                    (string-equal argi "-file")
                     (string-equal argi "-visit"))
                 ;; An explicit option to specify visiting a file.
+                (if argval
+                    (setq tem argval)
+                  (setq tem (car command-line-args-left)
+                        command-line-args-left (cdr command-line-args-left)))
+                (unless (stringp tem)
+                  (error "File name omitted from `%s' option" argi))
                 (setq file-count (1+ file-count))
-                (let ((file
-                       (expand-file-name
-                        (command-line-normalize-file-name orig-argi)
-                        dir)))
+                (let ((file (expand-file-name
+                             (command-line-normalize-file-name tem) dir)))
                   (if (= file-count 1)
                       (setq first-file-buffer (find-file file))
                     (find-file-other-window file)))
                 (or (zerop line)
                     (goto-line line))
                 (setq line 0))
+               
                ((equal argi "--")
                 (setq just-files t))
                (t