Changeset 4200 for trunk/lisp/erc/erc-match.el
- Timestamp:
- 2007年04月07日 15時49分28秒 (2 years ago)
- Files:
-
- trunk/lisp/erc/erc-match.el (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/erc/erc-match.el
r4190 r4200 1 1 ;;; erc-match.el --- Highlight messages matching certain regexps 2 2 3 ;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. 3 ;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 4 ;; 2007 Free Software Foundation, Inc. 4 5 5 6 ;; Author: Andreas Fuchs <asf@void.at> … … 541 542 (or (eq erc-log-matches-flag t) 542 543 (and (eq erc-log-matches-flag 'away) 543 erc-away))544 (erc-away-time))) 544 545 match-buffer-name) 545 546 (let ((line (format-spec erc-log-match-format … … 573 574 (defun erc-log-matches-come-back (proc parsed) 574 575 "Display a notice that messages were logged while away." 575 (when (and erc-away576 (when (and (erc-away-time) 576 577 (eq erc-log-matches-flag 'away)) 577 578 (mapc … … 584 585 (get-text-property (1- (point-max)) 585 586 'timestamp)))) 586 (away-time (erc-emacs-time-to-erc-time erc-away)))587 (away-time (erc-emacs-time-to-erc-time (erc-away-time)))) 587 588 (when (and away-time last-msg-time 588 589 (erc-time-gt last-msg-time away-time))
