From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: M Wasilewski Newsgroups: gmane.emacs.help Subject: Indenting problem Date: 23 Apr 2003 22:30:58 GMT Organization: University of Alberta, Edmonton, Canada Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1051137791 15737 80.91.224.249 (23 Apr 2003 22:43:11 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 23 Apr 2003 22:43:11 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Thu Apr 24 00:43:07 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 198SwC-0003zw-00 for ; Thu, 24 Apr 2003 00:42:00 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 198Sui-0004r1-0C for gnu-help-gnu-emacs@m.gmane.org; Wed, 23 Apr 2003 18:40:28 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!nntp.cs.ubc.ca!cyclone.bc.net!rover.ucs.ualberta.ca!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 26 Original-NNTP-Posting-Host: gpu1.srv.ualberta.ca User-Agent: tin/1.4.4-20000803 ("Vet for the Insane") (UNIX) (AIX/4-3) Original-Xref: shelby.stanford.edu gnu.emacs.help:112251 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:8750 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:8750 I seem to be having a problem with emacs indenting. Under solaris and linux my indenting looks like so: Vector3 cross( const Vector3 &v ) const { return Vector3( y * v.z - z * v.y, z * v.x - x * v.z, x * v.y - y * v.x ); } No problems. But running emacs under Windows XP with the same .emacs file gives me this: Vector3 cross( const Vector3 &v ) const { return Vector3( y * v.z - z * v.y, z * v.x - x * v.z, x * v.y - y * v.x ); } The z and the x are lined up with the bracket rather than the y. Does anyone know why this is? Or more importantly how to fix it? Thanks. --------------- Mike Wasilewski