Bump revision version, fix newline display after memory

If memory usage is not displayed, a newline was still inserted. This
commit fixes this.
This commit is contained in:
Lucien Cartier-Tilet 2021-05-22 04:30:34 +02:00
parent 3934c4e472
commit 508c6883fe
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 8 additions and 8 deletions

View File

@ -2,7 +2,7 @@
;; Author: Lucien Cartier-Tilet <lucien@phundrak.com>
;; Maintainer: Lucien Cartier-Tilet <lucien@phundrak.com>
;; Version: 0.4.1
;; Version: 0.4.2
;; Package-Requires: ((emacs "24") (dash "2") (f "0.20") (s "1"))
;; Homepage: https://labs.phundrak.com/phundrak/eshell-info-banner.el
@ -429,12 +429,13 @@ TYPE......: [=========] XXG / XXG (XX%)
progress bar.
`BAR-LENGTH': the length of the progress bar."
(mapconcat (lambda (mem)
(eshell-info-banner--memory-to-string (nth 0 mem) (nth 1 mem)
(nth 2 mem) text-padding
bar-length))
(eshell-info-banner--get-memory)
"\n"))
(concat (mapconcat (lambda (mem)
(eshell-info-banner--memory-to-string (nth 0 mem) (nth 1 mem)
(nth 2 mem) text-padding
bar-length))
(eshell-info-banner--get-memory)
"\n")
"\n"))
; Display information ;;;;;;;;;;;;;;;;;
@ -652,7 +653,6 @@ build number)."
uptime)
(eshell-info-banner--display-battery left-padding bar-length)
(eshell-info-banner--display-memory left-padding bar-length)
"\n"
(eshell-info-banner--display-partitions left-padding bar-length)
(format "\n%s\n" (s-repeat tot-width eshell-info-banner-progress-bar-char)))))