emacs-pretest-bug
[Top][All Lists]
Advanced

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

Re: Shell-script[bash] indention broken (or fixed?)


From: Stefan Monnier
Subject: Re: Shell-script[bash] indention broken (or fixed?)
Date: Wed, 15 Jun 2005 12:31:40 -0400
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux)

> #!/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




reply via email to

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