]> code.delx.au - gnu-emacs/blobdiff - lisp/startup.el
*** empty log message ***
[gnu-emacs] / lisp / startup.el
index a0daa9bff897c69faf6663f67a09fa9162506f51..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,15 +302,6 @@ is less convenient."
   :type '(choice (const :tag "none" nil) string)
   :group 'initialization)
 
-(defconst iso-8859-n-locale-regexp "8859[-_]?\\([1-49]\\|1[45]\\)\\>"
-  "Regexp that specifies when to enable an ISO 8859-N character set.
-We do that if this regexp matches the locale name specified by
-one of the environment variables LC_ALL, LC_CTYPE, or LANG.
-The paren group in the regexp should match the specific character
-set number, N.  Currently only Latin-[1234589] are supported.
-\(Note that Latin-5 is ISO 8859-9, because 8859-[678] are non-Latin
-alphabets; hence, supported values of N are 1, 2, 3, 4, 9, 14 and 15.\)")
-
 (defcustom mail-host-address nil
   "*Name of this machine, for purposes of naming users."
   :type '(choice (const nil) string)
@@ -331,20 +328,6 @@ 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)
@@ -521,46 +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) (line-end-position))))))
-    ;; Now see if the locale specifies an ISO 8859 character set.
-    (when (and ctype
-              (string-match iso-8859-n-locale-regexp ctype))
-      (let* ((which (match-string 1 ctype))
-            (latin (cdr (assoc which '(("9" . "5") ("14" . "8")
-                                       ("15" . "9")))))
-           charset)
-       (if latin  (setq which latin))
-       (setq charset (concat "latin-" which))
-       (when (string-match "latin-[1-589]" 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
@@ -821,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.
@@ -1018,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)))
@@ -1070,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
@@ -1080,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
@@ -1098,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
@@ -1110,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)
@@ -1118,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