GNU bug report logs -
#16828
24.3.50; eval-expression, character representation of integer results time-consuming
Previous Next
Reported by: Anders Lindgren <andlind <at> gmail.com>
Date: Fri, 21 Feb 2014 10:02:02 UTC
Severity: minor
Tags: fixed, patch
Merged with 19023,
21131,
23930
Found in versions 24.3.50, 24.4, 25.0.95
Fixed in version 26.1
Done: npostavs <at> users.sourceforge.net
Bug is archived. No further changes may be made.
Full log
Message #26 received at 16828 <at> debbugs.gnu.org (full text, mbox):
Achim Gratz wrote:
> Eli Zaretskii writes:
>> I don't think the time this takes is spend _looking_ for a font, I
>> think it's spend loading a font. But someone will have to trace and
>> profile this, and then come up with an analysis.
> Like Stephen I am fairly certain that most of the time is indeed spent
> looking for a suitable font, based on the disk noises that indicate
> seeking through many directories.
Especially on Cygwin, it's very annoying when edebugging. Displaying
a character for the number of a point or a result of a calculation is
useless. I use:
(if (eq system-type 'cygwin)
(defadvice eval-expression-print-format
(around dont-try-to-convert-char-to-string-when-edebugging
(value) activate)
"Don't try to convert char to string when edebugging."
(if (and (boundp 'edebug-active) (eval 'edebug-active))
(if (and (integerp value)
(or (eq standard-output t)
(zerop (prefix-numeric-value current-prefix-arg))))
(format " (#o%o, #x%x)" value value))
ad-do-it)))
This bug report was last modified 8 years and 3 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.