From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24741 invoked from network); 11 Aug 2006 10:54:48 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO autolearn=ham version=3.1.4 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 11 Aug 2006 10:54:48 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 7251 invoked from network); 11 Aug 2006 10:54:42 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 11 Aug 2006 10:54:42 -0000 Received: (qmail 21387 invoked by alias); 11 Aug 2006 10:54:31 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 10585 Received: (qmail 21377 invoked from network); 11 Aug 2006 10:54:30 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 11 Aug 2006 10:54:30 -0000 Received: (qmail 5631 invoked from network); 11 Aug 2006 10:54:30 -0000 Received: from nf-out-0910.google.com (64.233.182.186) by a.mx.sunsite.dk with SMTP; 11 Aug 2006 10:54:30 -0000 Received: by nf-out-0910.google.com with SMTP id y38so910015nfb for ; Fri, 11 Aug 2006 03:54:29 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=EjQuYqCk17u04ScOyyQm15pMwjgO67GQXwHYCfOwvyBeVgLKZk9nG2ha9TD92xDsliDiPS90oKbMO/rb6V6bdRScdccmBC5gx0Ocj/NqOUA2P1MQA/tkuLzgbtwMXJk5VFXj+Cp4oYhlwKWVRVpyd+uCtdBpFqsD4B8kHNmoymo= Received: by 10.78.185.7 with SMTP id i7mr2128822huf; Fri, 11 Aug 2006 03:54:29 -0700 (PDT) Received: by 10.78.178.17 with HTTP; Fri, 11 Aug 2006 03:54:29 -0700 (PDT) Message-ID: Date: Fri, 11 Aug 2006 12:54:29 +0200 From: "Nikolai Weibull" Sender: nikolai.weibull@gmail.com To: "Zsh Users' List" Subject: What would you say is the most-used way of indenting case labels MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Google-Sender-Auth: bb3c72a0ad556191 That is, is this style: case something in (*ome*) ... ;; esac more common than case something in (*ome*) ... ;; esac I'm trying to set a default for a shell-script indentation script. Thanks. nikolai