unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: thierry.volpiatto@gmail.com
To: help-gnu-emacs@gnu.org
Subject: Re: How to defun body in procedural manner
Date: Fri, 17 Apr 2009 14:51:23 +0200	[thread overview]
Message-ID: <87k55jv3xw.fsf@tux.homenetwork> (raw)
In-Reply-To: 640bf9e6-2694-4334-9781-c31254c36c33@k19g2000prh.googlegroups.com

Kiwon Um <um.kiwon@gmail.com> writes:

> On Apr 17, 2:52 pm, thierry.volpia...@gmail.com wrote:
>> Hi, i don't use cvs, but you should have a look at what return:
>> `cvs-sentinel'.
>> and:
>> (when (cvs-sentinel ==> return_what_you_want)
>>   (shell-command "your_command"))
>>
>
> I've tried to understand what the cvs-sentinel function does, but I
> didn't. Would you write a concrete example code for me, please?

Yes, as i told you i am not a cvs user, so...
it seem cvs-sentinel return only a message :-(
So try that, i just write it and it worked to update emacs-w3m and compile
it:

(defun update-cvs-dir-and-compile ()
  (interactive)
  (let ((dir default-directory))
    (cvs-update dir nil)
    (while (not (equal cvs-mode-line-process "exit"))
      (sit-for 1))
    (shell-command "make")))

Modify for your need (make args ...etc..)

>> Kiwon Um <um.ki...@gmail.com> writes:
>> > Hello. I wrote a function as follows:
>>
>> > (defun my-update-package (path)
>> >   "Update the package in path from CVS"
>> >   (cvs-update path nil)
>> >   (shell-command (concat "touch `find " path " -name Makefile`"))
>> >   (compile (concat "make -C " path)))
>>
>> > When the function is called, it seems to execute the shell-command and
>> > compile lines before the finishing cvs-update line. How can I make
>> > this functional execution procedurally? Help me, please.
>>
>> > Thanks.
>>
>> --
>> A + Thierry Volpiatto
>> Location: Saint-Cyr-Sur-Mer - France
>
>

-- 
A + Thierry Volpiatto
Location: Saint-Cyr-Sur-Mer - France





  reply	other threads:[~2009-04-17 12:51 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-17  1:28 How to defun body in procedural manner Kiwon Um
2009-04-17  4:37 ` Barry Margolin
2009-04-17  5:29   ` Kiwon Um
2009-04-17  5:52 ` thierry.volpiatto
     [not found] ` <mailman.5512.1239947972.31690.help-gnu-emacs@gnu.org>
2009-04-17  9:52   ` Kiwon Um
2009-04-17 12:51     ` thierry.volpiatto [this message]
     [not found]     ` <mailman.5523.1239973116.31690.help-gnu-emacs@gnu.org>
2009-04-18  6:58       ` Kiwon Um
2009-04-20  7:44       ` Kiwon Um
2009-04-20 10:43         ` thierry.volpiatto
2009-04-21  0:57           ` Kevin Rodgers
     [not found]         ` <mailman.5725.1240224622.31690.help-gnu-emacs@gnu.org>
2009-04-20 13:28           ` Kiwon Um
2009-04-20 14:18             ` thierry.volpiatto
     [not found]             ` <mailman.5730.1240237545.31690.help-gnu-emacs@gnu.org>
2009-04-21  1:46               ` Kiwon Um

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

  List information: https://www.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=87k55jv3xw.fsf@tux.homenetwork \
    --to=thierry.volpiatto@gmail.com \
    --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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).