On Wednesday 15 June 2005 12:31, Stefan Monnier wrote:
> > #!/bin/bash
> > pushd /download/org/gnu/emacs/emacs &&\
> >  cvs update -dPAC &&\
> >  pushd /download/org/gnu/emacs/emacs-build &&\
> >  make clean &&\
> >  ../emacs/configure --prefix=$GNU_EMACS &&\
> >  make -j8 &&\
> >  pushd lisp &&\
> >  make recompile EMACS=../src/emacs &&\
> >  popd &&\
> >  make install &&\
> >  popd
>
> What if these things are within an if or while or case or ...:
>
> Do you do
>
>    if foo then
>        pushd toto &&\
>  cvsupdate ...
>    fi
>
> or do you do
>
>    if foo then
>        pushd toto &&\
>         cvsupdate ...
>    fi
>
>
> -- Stefan

Exactly my reason for equivocating.  Though I will have to go with 

    if foo; then
        pushd toto \
        && cvsupdate;
    fi

as a point of style (corrected on my part.)
-- 
Regards,
Steven


_______________________________________________
Emacs-pretest-bug mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug

Reply via email to