From 2050f818605afa5bf4ebca879f466f7cccc90331 Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Mon, 4 Dec 2023 18:40:10 -0500 Subject: [PATCH] Fix compatibility with Emacs 27 inhibit-buffer-hooks parameter for get-buffer-create was introduced in Emacs 28. --- mood-line.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mood-line.el b/mood-line.el index 18a43f8..73db29b 100644 --- a/mood-line.el +++ b/mood-line.el @@ -401,7 +401,7 @@ See `mood-line-defformat' for a helpful formatting macro." ;; ;; -------------------------------------------------------------------------- ;; -(defvar mood-line--escape-buffer (get-buffer-create " *mood-line*" t) +(defvar mood-line--escape-buffer (get-buffer-create " *mood-line*") "Buffer used by `mood-line--escape'.") (defun mood-line--escape (&rest strings)