>>> "Mosè" == Mosè Giordano <m...@gnu.org> writes:

   > 2017-02-19 14:35 GMT+01:00 Marcin Borkowski <mb...@mbork.pl>:
   >> I see.  In GNU Emacs, time-to-seconds is just an alias for float-time.
   >> Does XEmacs have that?

   > Already checked, no, unless it's under another name, but in
   > `time-date.el' there is an elisp implementation of
   > `time-to-seconds', we could use that for compatibility with XEmacs,
   > if necessary.

I don't remember that one, but I do remember that in order to use org
mode I needed the following

(unless (fboundp 'time-to-seconds)
  (defun time-to-seconds (time)
        "Convert time value TIME to a floating point number."
        (with-decoded-time-value ((high low micro time))
          (+ (* 1.0 high 65536)
             low
             (/ micro 1000000.0)))))

That worked, I don't know about the new version though.

_______________________________________________
auctex-devel mailing list
auctex-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex-devel

Reply via email to