all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Sebastien Vauban" <wxhgmqzgwmuf-geNee64TY+gS+FvcfC7Uqw@public.gmane.org>
To: help-gnu-emacs-mXXj517/zsQ@public.gmane.org
Subject: Performances while loading bytecomp and warnings
Date: Tue, 07 Aug 2012 16:01:21 +0200	[thread overview]
Message-ID: <80k3xaer7y.fsf@somewhere.org> (raw)

Hello,

Looking at reducing my Emacs startup time, I've noticed that the following
snippet of code takes ~2.00 seconds on my machine:

--8<---------------cut here---------------start------------->8---
  ;; add the ability to copy or cut the current line without marking it
  ;; (no active region) -- idea stolen from SlickEdit
  (defadvice kill-ring-save (before slickcopy activate compile)
    "When called interactively with no active region, copy the current
  line instead."
    (interactive
     (if mark-active (list (region-beginning) (region-end))
       (message "Copied the current line")
       (list (line-beginning-position)
             (line-beginning-position 2)))))

  (defadvice kill-region (before slickcut activate compile)
    "When called interactively with no active region, kill the current
  line instead."
    (interactive
     (if mark-active (list (region-beginning) (region-end))
       (list (line-beginning-position)
             (line-beginning-position 2)))))
--8<---------------cut here---------------end--------------->8---

That requires:
- bytecomp
- macroexp
- cconv
- cl-macs
- warnings

Is there a way to reduce that time, or to let it be taken later, when needed
for the first time?

Best regards,
  Seb

-- 
Sebastien Vauban


                 reply	other threads:[~2012-08-07 14:01 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=80k3xaer7y.fsf@somewhere.org \
    --to=wxhgmqzgwmuf-genee64ty+gs+fvcfc7uqw@public.gmane.org \
    --cc=help-gnu-emacs-mXXj517/zsQ@public.gmane.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.