fix spacemacs buffer for -nw and --batch

This commit is contained in:
ksjogo 2016-06-13 11:20:38 +02:00 committed by syl20bnr
parent cbb61070fd
commit 4d4e89641e
1 changed files with 9 additions and 7 deletions

View File

@ -194,14 +194,16 @@ buffer, right justified."
(save-excursion
(let* ((maxcol spacemacs-buffer--banner-length)
(badge-path spacemacs-badge-official-png)
(badge (when (image-type-available-p
(intern (file-name-extension badge-path)))
(create-image badge-path)))
(badge (when (and (display-graphic-p)
(image-type-available-p
(intern (file-name-extension badge-path)))
(create-image badge-path))))
(badge-size (when badge (car (image-size badge))))
(heart-path spacemacs-purple-heart-png)
(heart (when (image-type-available-p
(intern (file-name-extension heart-path)))
(create-image heart-path)))
(heart (when (and (display-graphic-p)
(image-type-available-p
(intern (file-name-extension badge-path)))
(create-image heart-path))))
(heart-size (when heart (car (image-size heart))))
(build-lhs "Made with ")
(build-rhs " by the community")
@ -484,7 +486,7 @@ border."
(defun spacemacs-buffer/loading-animation ()
"Display the progress bar by chunk of size
`spacemacs--loading-dots-chunk-threshold'."
(when dotspacemacs-loading-progress-bar
(when (and (not noninteractive) dotspacemacs-loading-progress-bar)
(setq spacemacs-loading-counter (1+ spacemacs-loading-counter))
(setq spacemacs-loading-value (1+ spacemacs-loading-value))
(when (>= spacemacs-loading-counter spacemacs-loading-dots-chunk-threshold)