On April 17, 2019 at 2:19PM +0900, kmuto (at kmuto.jp) wrote:
> riece-unread.el:
> 63   (make-face 'riece-modeline-unread-face)
> 64              ;; "Face used for displaying unread channels in modeline.")
> 
> Now I succeeded to call M-x riece.

As Hideki mentioned, seems fixed in the upstream Git repo:

  - 
http://git.savannah.nongnu.org/cgit/riece.git/commit/?id=f7974cb688850bf3f41ee2f7329fc3d5e8c41c97

> But things goes worse.
> 
> Though I specified correct server for Riece asking, Emacs displayed
> just only 'Saving /home/kmuto/.riece/save... Done'.
> IRC process seems be running but no connection isn't established.

Refer to the upstream issue, <http://savannah.nongnu.org/bugs/?55055>:
> Submitted by:         naruse <naruse>         
> Submitted on:         Mon 19 Nov 2018 11:39:47 AM UTC
> It may work older emacs(?), but at least on my environment (emacs 26.1 on 
> FreeBSD 26.1) it doesn't work.
> If I replace ffloor with floor, it works.

```
--- a/lisp/riece-compat.el
+++ b/lisp/riece-compat.el
@@ -114,7 +114,7 @@
     "Convert SECONDS (a floating point number) to a time value."
     (list (floor seconds 65536)
          (floor (mod seconds 65536))
-         (floor (* (- seconds (ffloor seconds)) 1000000)))))
+         (floor (* (- seconds (floor seconds)) 1000000)))))
 
 (provide 'riece-compat)
```

Though not tested, I'm not a user of riece.

Thanks,
-- 
Tatsuya Kinoshita

Reply via email to