spacemacs使用最新emacs28不能正常启动

提示出现下面的问题:

Debugger entered–Lisp error: (wrong-type-argument stringp nil) file-exists-p(nil) (and dotspacemacs-enable-emacs-pdumper (file-exists-p (locate-file dotspacemacs-emacs-pdumper-executable-file exec-path exec-suffixes 'file-executable-p))) spacemacs/emacs-with-pdumper-set-p() (and (spacemacs/emacs-with-pdumper-set-p) (spacemacs-run-from-dump-p)) (cond (changed-since-last-dump-p (configuration-layer//load) (if (spacemacs/emacs-with-pdumper-set-p) (progn (configuration-layer/message “Layer list has changed since last dump.”) (configuration-layer//dump-emacs)))) (spacemacs-force-dump (configuration-layer//load) (if (spacemacs/emacs-with-pdumper-set-p) (progn (configuration-layer/message (concat “–force-dump passed on the command line, " “forcing a redump.”)) (configuration-layer//dump-emacs)))) ((spacemacs-is-dumping-p) (configuration-layer//load) (configuration-layer/message “Dumping Emacs…”)) ((and (spacemacs/emacs-with-pdumper-set-p) (spacemacs-run-from-dump-p)) (configuration-layer/message “Running from a dumped file. Skipping the loading p…”)) (t (configuration-layer//load) (if (spacemacs/emacs-with-pdumper-set-p) (progn (configuration-layer/message (concat “Layer list has not changed since last time. " “Skipping dumping process!”)))))) configuration-layer/load() (let ((file-name-handler-alist nil)) (require 'core-spacemacs) (if (eq 'dumping spacemacs-dump-mode) nil (if (boundp 'load-path-backup) (progn (setq load-path load-path-backup)))) (configuration-layer/load-lock-file) (spacemacs/init) (configuration-layer/stable-elpa-download-tarball) (configuration-layer/load) (spacemacs-buffer/display-startup-note) (spacemacs/setup-startup-hook) (if (eq 'dumping spacemacs-dump-mode) nil (global-font-lock-mode) (global-undo-tree-mode t) (winner-mode t)) (if (and dotspacemacs-enable-server (not (spacemacs-is-dumping-p))) (progn (require 'server) (if dotspacemacs-server-socket-dir (progn (setq server-socket-dir dotspacemacs-server-socket-dir))) (if (server-running-p) nil (message “Starting a server…”) (server-start)))) (if (eq 'dumping spacemacs-dump-mode) (progn (setq load-path-backup load-path) (global-undo-tree-mode -1) (setq spacemacs-dump-mode 'dumped) (garbage-collect)))) (if (not (version<= spacemacs-emacs-min-version emacs-version)) (error (concat “Your version of Emacs (%s) is too old. " “Spacemacs requires Emacs version %s or above.”) emacs-version spacemacs-emacs-min-version) (let ((file-name-handler-alist nil)) (require 'core-spacemacs) (if (eq 'dumping spacemacs-dump-mode) nil (if (boundp 'load-path-backup) (progn (setq load-path load-path-backup)))) (configuration-layer/load-lock-file) (spacemacs/init) (configuration-layer/stable-elpa-download-tarball) (configuration-layer/load) (spacemacs-buffer/display-startup-note) (spacemacs/setup-startup-hook) (if (eq 'dumping spacemacs-dump-mode) nil (global-font-lock-mode) (global-undo-tree-mode t) (winner-mode t)) (if (and dotspacemacs-enable-server (not (spacemacs-is-dumping-p))) (progn (require 'server) (if dotspacemacs-server-socket-dir (progn (setq server-socket-dir dotspacemacs-server-socket-dir))) (if (server-running-p) nil (message “Starting a server…”) (server-start)))) (if (eq 'dumping spacemacs-dump-mode) (progn (setq load-path-backup load-path) (global-undo-tree-mode -1) (setq spacemacs-dump-mode 'dumped) (garbage-collect))))) eval-buffer(#<buffer load> nil “/home/fg/.emacs.d/init.el” nil t) ; Reading at buffer position 2519 load-with-code-conversion(”/home/fg/.emacs.d/init.el” “/home/fg/.emacs.d/init.el” t t) load(”/home/fg/.emacs.d/init" noerror nomessage) startup–load-user-init-file(#f(compiled-function () #<bytecode 0x15749ce358b9>) #f(compiled-function () #<bytecode 0x15749ce2ce51>) t) command-line() normal-top-level()

大家有遇到吗?帮忙解决下。