mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 13:27:36 +00:00
Preserve incoming order of messages with same timestamp
* rcirc.el (rcirc-print): Emulate time-less-or-equal-p
This commit is contained in:
parent
fd96e3a0d9
commit
a44e402b69
1 changed files with 1 additions and 1 deletions
|
|
@ -1767,7 +1767,7 @@ connection."
|
|||
(goto-char (or (previous-single-property-change (point) 'hard)
|
||||
(point-min)))
|
||||
(when (let ((then (get-text-property (point) 'rcirc-time)))
|
||||
(and then (time-less-p then time)))
|
||||
(and then (not (time-less-p time then))))
|
||||
(next-single-property-change (point) 'hard)
|
||||
(forward-char 1)
|
||||
(throw 'exit nil))))
|
||||
|
|
|
|||
Loading…
Reference in a new issue