At Wed, 17 Apr 2019 18:37:29 +0900 (JST),
Tatsuya Kinoshita wrote:
> 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)
> ```

It's riece-server.el on Buster version. After I changed the file,
it works like a charm!
Thanks!

OK, so Hideki, this problem will be solved by tiny patch, I believe.
-- 
Kenshi Muto
kmuto at kmuto jp

Reply via email to