emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 50dc4ca: * lisp/erc/erc-stamp.el: Fix erc-echo-time


From: Stefan Monnier
Subject: [Emacs-diffs] master 50dc4ca: * lisp/erc/erc-stamp.el: Fix erc-echo-timestamp (bug#22700)
Date: Mon, 19 Aug 2019 05:44:49 -0400 (EDT)

branch: master
commit 50dc4ca8d02a466a7236765edf83ae7cfb02d74c
Author: Stefan Monnier <address@hidden>
Commit: Stefan Monnier <address@hidden>

    * lisp/erc/erc-stamp.el: Fix erc-echo-timestamp (bug#22700)
    
    Use lexical-binding.
    (erc-add-timestamp): Store the timestamp in a closure placed in
    cursor-sensor-functions rather than stashing it in an ad-hoc
    `timestamp` property.
    (erc-echo-timestamp): Simplify accordingly.
---
 lisp/erc/erc-stamp.el | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/lisp/erc/erc-stamp.el b/lisp/erc/erc-stamp.el
index b488034..a15d8bf 100644
--- a/lisp/erc/erc-stamp.el
+++ b/lisp/erc/erc-stamp.el
@@ -1,4 +1,4 @@
-;;; erc-stamp.el --- Timestamping for ERC messages
+;;; erc-stamp.el --- Timestamping for ERC messages  -*- lexical-binding:t -*-
 
 ;; Copyright (C) 2002-2004, 2006-2019 Free Software Foundation, Inc.
 
@@ -186,10 +186,11 @@ or `erc-send-modify-hook'."
        (funcall erc-insert-away-timestamp-function
                 (erc-format-timestamp ct erc-away-timestamp-format)))
       (add-text-properties (point-min) (point-max)
-                          (list 'timestamp ct))
-      (add-text-properties (point-min) (point-max)
+                          ;; It's important for the function to
+                          ;; be different on different entries (bug#22700).
                           (list 'cursor-sensor-functions
-                                (list #'erc-echo-timestamp))))))
+                                (list (lambda (_window _before dir)
+                                        (erc-echo-timestamp dir ct))))))))
 
 (defvar erc-timestamp-last-inserted nil
   "Last timestamp inserted into the buffer.")
@@ -399,14 +400,12 @@ enabled when the message was inserted."
            (erc-munge-invisibility-spec)))
        (erc-buffer-list)))
 
-(defun erc-echo-timestamp (window _before dir)
+(defun erc-echo-timestamp (dir stamp)
   "Print timestamp text-property of an IRC message."
   (when (and erc-echo-timestamps (eq 'entered dir))
-    (let* ((now (window-point window))
-          (stamp (get-text-property now 'timestamp)))
-      (when stamp
-       (message "%s" (format-time-string erc-echo-timestamp-format
-                                         stamp))))))
+    (when stamp
+      (message "%s" (format-time-string erc-echo-timestamp-format
+                                       stamp)))))
 
 (provide 'erc-stamp)
 



reply via email to

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