help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: call function in other window ?


From: Jean-Christophe Helary
Subject: Re: call function in other window ?
Date: Sun, 21 May 2017 07:43:15 +0900

Thank you Drew.

Wouldn't it be something that people use frequently enough that is has its own 
function in Emacs ?

Jean-Christophe 

> On May 21, 2017, at 5:25, Drew Adams <drew.adams@oracle.com> wrote:
> 
>> Is there an argument to M-x... to call a function not in the current
>> buffer/window but in a different one (like the one targeted by "other
>> window" ? Or a different way to do that ?
> 
> (defun foo (fn &rest args)
>  (let ((win  (next-window)))
>    (when win
>      (with-current-buffer (window-buffer win)
>       (apply fn args)))))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]