]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't check for dump-emacs being bound.
authorKen Raeburn <raeburn@raeburn.org>
Fri, 9 Jun 2017 06:56:28 +0000 (02:56 -0400)
committerKen Raeburn <raeburn@raeburn.org>
Sat, 22 Jul 2017 08:36:22 +0000 (04:36 -0400)
lisp/loadup.el

index 12c7d2d720f416bc2f8a6e793405f48fd4a0c258..8ca80ee7dca6f262d7c848b69ff10f1133f00851 100644 (file)
@@ -75,7 +75,7 @@
                           (nth 4 command-line-args)))
        (member (nth 7 command-line-args) '("unidata-gen-file"
                                            "unidata-gen-charprop"))
-       (if (fboundp 'dump-emacs)
+       (if t; (fboundp 'dump-emacs)
            (string-match "src/bootstrap-emacs" (nth 0 command-line-args))
          t))
     ;; Value of max-lisp-eval-depth when compiling initially.
@@ -90,7 +90,7 @@
 (message "Using load-path %s" load-path)
 
 ;; This is a poor man's `last', since we haven't loaded subr.el yet.
-(if (and (fboundp 'dump-emacs)
+(if (and t; (fboundp 'dump-emacs)
          (or (equal (member "bootstrap" command-line-args) '("bootstrap"))
              (equal (member "dump" command-line-args) '("dump"))))
     (progn
@@ -353,14 +353,14 @@ lost after dumping")))
 ;; in non-ASCII directories is to manipulate unibyte strings in the
 ;; current locale's encoding.
 (if (and (member (car (last command-line-args)) '("dump" "bootstrap"))
-         (fboundp 'dump-emacs)
+         t; (fboundp 'dump-emacs)
         (multibyte-string-p default-directory))
     (error "default-directory must be unibyte when dumping Emacs!"))
 
 ;; Determine which build number to use
 ;; based on the executables that now exist.
 (if (and (equal (last command-line-args) '("dump"))
-         (fboundp 'dump-emacs)
+         t; (fboundp 'dump-emacs)
         (not (eq system-type 'ms-dos)))
     (let* ((base (concat "emacs-" emacs-version "."))
           (exelen (if (eq system-type 'windows-nt) -4))
@@ -378,7 +378,7 @@ lost after dumping")))
 
 
 (message "Finding pointers to doc strings...")
-(if (and (fboundp 'dump-emacs)
+(if (and t; (fboundp 'dump-emacs)
          (equal (last command-line-args) '("dump")))
     (Snarf-documentation "DOC" 'clear)
   (condition-case nil
@@ -448,7 +448,7 @@ lost after dumping")))
 ;; Make sure we will attempt bidi reordering henceforth.
 (setq redisplay--inhibit-bidi nil)
 
-(if (and (fboundp 'dump-emacs)
+(if (and t; (fboundp 'dump-emacs)
          (member (car (last command-line-args)) '("dump" "bootstrap")))
     (progn
       ;; Prevent build-time PATH getting stored in the binary.