all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Katsumi Yamaoka <yamaoka@jpl.org>
To: 16828@debbugs.gnu.org
Subject: bug#16828: 24.3.50; eval-expression, character representation of integer results time-consuming
Date: Tue, 25 Feb 2014 09:42:22 +0900	[thread overview]
Message-ID: <b4my510yqdt.fsf@jpl.org> (raw)
In-Reply-To: <CABr8ebbLKP8As7ud-u3wmJ4cuua1NhKX8_yGpfSd7-1p1ez+bA@mail.gmail.com>

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)))





  reply	other threads:[~2014-02-25  0:42 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-21 10:01 bug#16828: 24.3.50; eval-expression, character representation of integer results time-consuming Anders Lindgren
2014-02-21 10:29 ` Eli Zaretskii
2014-02-22 12:49   ` Anders Lindgren
2014-02-22 13:11     ` Eli Zaretskii
2014-02-22 18:53       ` Stephen Berman
2014-02-22 21:00         ` Eli Zaretskii
2014-02-23  9:06           ` Achim Gratz
2014-02-25  0:42             ` Katsumi Yamaoka [this message]
2014-02-26 10:16               ` martin rudalics
2017-03-26  3:45                 ` npostavs
2017-03-26 14:13                   ` Eli Zaretskii
2017-03-26 14:19                     ` Noam Postavsky
2017-03-26 14:37                       ` Eli Zaretskii
2017-03-26 14:55                         ` npostavs
2017-03-26 15:22                           ` Eli Zaretskii
2017-03-26 17:39                             ` npostavs
2017-03-26 17:51                               ` Eli Zaretskii
2017-03-26 18:16                                 ` npostavs
2017-03-26 18:40                                   ` Eli Zaretskii
2017-05-18 23:56                                     ` npostavs
2017-05-19  6:34                                       ` Eli Zaretskii
2017-05-19 20:52                                         ` npostavs
2017-05-19 21:09                                           ` Eli Zaretskii
2017-05-19 22:28                                             ` npostavs

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b4my510yqdt.fsf@jpl.org \
    --to=yamaoka@jpl.org \
    --cc=16828@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.