> Can you be more specific ?

Sure. When I run "M-x magit-blame-mode", I got this error:

magit-blame-split-time: Wrong type argument: integerp, 1314986328.0

Looks like in this line the `lsh' cannot be used on floating point number?

  (list (lsh unixtime -16) (logand unixtime #xFFFF)))

I had tried using `round' on the floating point number "unixtime" but got a
"range error" on `round':

  (list (lsh (round unixtime) -16) (logand unixtime #xFFFF)))

Thanks,
York

Reply via email to