From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Sebastien Vauban" Newsgroups: gmane.emacs.help Subject: Re: How to delay loading of packages (when eval-after-load does notapply)? Date: Fri, 17 Aug 2012 20:33:48 +0200 Organization: Sebastien Vauban Message-ID: <80zk5tv04z.fsf@somewhere.org> References: <804no4c64n.fsf@somewhere.org> <80pq6pygox.fsf@somewhere.org> <80sjblk9ar.fsf@somewhere.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1345228517 31135 80.91.229.3 (17 Aug 2012 18:35:17 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 17 Aug 2012 18:35:17 +0000 (UTC) To: help-gnu-emacs-mXXj517/zsQ@public.gmane.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org-mXXj517/zsQ@public.gmane.org Fri Aug 17 20:35:17 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1T2RO6-0003Xf-0j for geh-help-gnu-emacs@m.gmane.org; Fri, 17 Aug 2012 20:35:14 +0200 Original-Received: from localhost ([::1]:43534 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T2RO4-0002SI-Qt for geh-help-gnu-emacs@m.gmane.org; Fri, 17 Aug 2012 14:35:12 -0400 Original-Path: usenet.stanford.edu!goblin2!goblin.stu.neva.ru!aioe.org!eternal-september.org!feeder.eternal-september.org!mx04.eternal-september.org!.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 42 Injection-Info: mx04.eternal-september.org; posting-host="5da807328d6a3351ee2b595083918cf6"; logging-data="9154"; mail-complaints-to="abuse-VVbKFVtnif8H+i2N2EyTrmui9UKz+5OX@public.gmane.org"; posting-account="U2FsdGVkX196pjN4WFeOyYdp6P2n4F+5" User-Agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.1 (windows-nt) X-Archive: encrypt Cancel-Lock: sha1:iX+aOww7K4a9QRrttjVeRNkBY6c= sha1:Y9eAW/sAXdlclAZpQVfOZ3LaWMw= X-Url: Under construction... Original-Xref: usenet.stanford.edu gnu.emacs.help:194034 X-BeenThere: help-gnu-emacs-mXXj517/zsQ@public.gmane.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org-mXXj517/zsQ@public.gmane.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org-mXXj517/zsQ@public.gmane.org Xref: news.gmane.org gmane.emacs.help:86402 Archived-At: Hi Raffaele, Raffaele Ricciardi wrote: > On 08/17/2012 01:11 PM, Sebastien Vauban wrote: >> Now, wanting to apply the same mechanism for other slow parts of my .emacs >> file, I'm stuck with this one[1]: >> >> --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--- > > See http://www.emacswiki.org/emacs/WholeLineOrRegion > > Note the use of `use-region-p' instead of 'mark-active'. I don't understand all the subtleties, except that it uses a function directly defined in `simple.el', but it does a great job: no noticeable delay! Thanks a lot. Best regards, Seb -- Sebastien Vauban