bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#20468: 25.0.50; erc timestamps not displayed


From: Stefan Monnier
Subject: bug#20468: 25.0.50; erc timestamps not displayed
Date: Wed, 24 Jun 2015 16:41:01 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux)

> I don't think so. It's worse here. Now I need to call (erc-toggle-timestamps)
> twice.

I installed the patch below which should hopefully fix the problem.
Can you confirm it fixes it for you,


        Stefan


diff --git a/lisp/subr.el b/lisp/subr.el
index 5d40aaa..535fa2d 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -4066,9 +4066,10 @@ that can be added."
 
 (defun remove-from-invisibility-spec (element)
   "Remove ELEMENT from `buffer-invisibility-spec'."
-  (if (consp buffer-invisibility-spec)
-      (setq buffer-invisibility-spec
-           (delete element buffer-invisibility-spec))))
+  (setq buffer-invisibility-spec
+        (if (consp buffer-invisibility-spec)
+           (delete element buffer-invisibility-spec)
+          (list t))))
 
 ;;;; Syntax tables.
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]