summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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