all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Eli Zaretskii <eliz@gnu.org>
To: help-gnu-emacs@gnu.org
Subject: Re: Slow redisplay
Date: Mon, 26 Aug 2019 10:42:57 +0300	[thread overview]
Message-ID: <83zhjwfk3i.fsf@gnu.org> (raw)
In-Reply-To: <20190826042041.sb55jznqihn3xcgv@Ergus> (message from Ergus on Mon, 26 Aug 2019 06:20:41 +0200)

> Date: Mon, 26 Aug 2019 06:20:41 +0200
> From: Ergus <spacibba@aol.com>
> Cc: help-gnu-emacs@gnu.org
> 
> >If you set garbage-collection-messages non-nil, do you see any GC
> >messages when Emacs is lagging input?
> 
> No there is not any garbage collection message after 5 hours.
> 
> >If so, does invoking "M-x
> >garbage-collect RET" manual fix that?
> >
> Yes, executing it manually fixes the lagging.
> 
> In my config I do.
> 
> early-init.el
> =============
> 
> (setq file-name-handler-alist nil
>       message-log-max 16384
>       gc-cons-threshold most-positive-fixnum   ;; Defer Garbage collection
>       gc-cons-percentage 1.0)
> 
> (add-hook 'window-setup-hook
>           (lambda ()
>             (setq file-name-handler-alist file-name-handler-alist-old
>                   gc-cons-threshold 800000
>                   gc-cons-percentage 0.1)
> 	    (garbage-collect)
> 	    (message "Load time %.06f" (float-time (time-since my/start-time))))
> 	  t)
> 
> init.el
> =======
> 
> (defun my/minibuffer-setup-hook ()
>   (setq gc-cons-threshold most-positive-fixnum))
> 
> (defun my/minibuffer-exit-hook ()
>   (setq gc-cons-threshold 800000))
> 
> (add-hook 'minibuffer-setup-hook #'my/minibuffer-setup-hook)
> (add-hook 'minibuffer-exit-hook #'my/minibuffer-exit-hook)
> 
> ================

There's currently an unfixed bug on master, whereby you must call
garbage-collect explicitly when you reset gc-cons-threshold to a value
lower than most-positive-fixnum.  Otherwise GC remains disabled
basically forever.



      reply	other threads:[~2019-08-26  7:42 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-25 10:32 Slow redisplay Ergus via Users list for the GNU Emacs text editor
2019-08-25 11:10 ` Eli Zaretskii
2019-08-26  4:20   ` Ergus
2019-08-26  7:42     ` Eli Zaretskii [this message]

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=83zhjwfk3i.fsf@gnu.org \
    --to=eliz@gnu.org \
    --cc=help-gnu-emacs@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.