summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R. Mauger <michael@mauger.com>2026-03-17 23:25:00 -0400
committerMichael R. Mauger <michael@mauger.com>2026-03-17 23:25:00 -0400
commiteedbec6a0c56be403fdbe0b1f38a4acd4f11d09b (patch)
treec5f67f112c6519728f5993f34ddb7488e2b87a0f
parent7f5510c8ab25e304769e845268a0992899745543 (diff)
Green Bar v1.2.260317externals/greenbar
Updated copyright and added automatic version update with time-stamp * greenbar.el (greenbar-lighter): Tweak lighter format.
-rw-r--r--greenbar.el12
1 files changed, 7 insertions, 5 deletions
diff --git a/greenbar.el b/greenbar.el
index 9714e79..fe09f1b 100644
--- a/greenbar.el
+++ b/greenbar.el
@@ -1,9 +1,9 @@
;;; greenbar.el --- Mark comint output with "greenbar" background -*- lexical-binding: t -*-
-;; Copyright (C) 2013-2025 Free Software Foundation, Inc.
+;; Copyright (C) 2013-2026 Free Software Foundation, Inc.
;; Author: Michael R. Mauger <michael@mauger.com>
-;; Version: 1.2
+;; Version: 1.2.260317
;; SPDX-License-Identifier: GPL-3.0-or-later
;; Package-Type: simple
;; Package-Requires: ((emacs "27.1"))
@@ -122,8 +122,8 @@ theme followed by the list bar colors.")
(let* ((greenbar (assq 'greenbar greenbar-color-themes))
(bg (nth 1 greenbar))
(fg (nth 2 greenbar)))
- (propertize "\s\N{Heavy Horizontal Fill}"
- 'face `(:foreground ,bg :background ,fg)))
+ (propertize "\N{Heavy Horizontal Fill}"
+ 'font-lock-face `(:foreground ,fg :background ,bg)))
"The minor mode lighter that appears in the mode line."
:type 'string)
@@ -217,5 +217,7 @@ set of background colors found in
#'greenbar-output-filter t)))
(provide 'greenbar)
-
+;; Local Variables:
+;; time-stamp-pattern: "20/Version:[\s\t]*\\(?:[[:digit:]]+[.]\\)+%y%m%d\n"
+;; End:
;;; greenbar.el ends here