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

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

Re: bug#15876: 24.3.50; Highly degraded performance between rev 114715 a


From: Sebastien Vauban
Subject: Re: bug#15876: 24.3.50; Highly degraded performance between rev 114715 and 115006
Date: Wed, 13 Nov 2013 14:58:48 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (windows-nt)

Hello Dani,

Dani Moncayo wrote:
>> Anyway, I'm using Dani's binaries. See
>> http://sourceforge.net/projects/emacs-bin/?source=directory.
>>
>> Currently, there is no newer one.
>
> Yesterday I uploaded a new binary.

Thanks!

> However, I forgot to manually edit the file 'lisp/loadup.el' to set the value
> of 'emacs-bzr-version'. So in this binary that variable returns nothing.
>
> Perhaps it would be better to stop relying on that variable, and just
> use the timestamp, e.g.:
>
>   (setq frame-title-format
>         (format
>          "Emacs %s of %s    PID:%d"
>          emacs-version
>          (format-time-string "%Y-%m-%d" emacs-build-time)
>          (emacs-pid)))

I now use both the rev number (when available) and the date:

--8<---------------cut here---------------start------------->8---
  ;; title bar display of visible frames
  (setq frame-title-format
        (format "Emacs %s rev:%s of %s    PID:%d"
                emacs-version
                (ignore-errors
                  (replace-regexp-in-string " .*" "" emacs-bzr-version))
                (format-time-string "%Y-%m-%d" emacs-build-time)
                (emacs-pid)))
--8<---------------cut here---------------end--------------->8---

Thanks for your input.

Best regards,
  Seb

-- 
Sebastien Vauban


reply via email to

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