bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: bibtex-convert-alien fails


From: Ulrich Mueller
Subject: Re: bibtex-convert-alien fails
Date: Wed, 20 Feb 2008 00:59:17 +0100

>>>>> On Tue, 19 Feb 2008, Ulrich Mueller wrote:

> [patch for subr.el]
> -    (setq seconds (+ seconds (* 1e-3 nodisp)))
> +    (setq seconds (+ seconds (* 1e-3 (or nodisp 0))))

On second thought, it might be cleaner to test for nodisp first:

-    (setq seconds (+ seconds (* 1e-3 nodisp)))
+    (if nodisp (setq seconds (+ seconds (* 1e-3 nodisp))))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]