From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Radamanthe Newsgroups: gmane.emacs.help Subject: Re: Hi, group. When I type some C code such as: if(1) { a = 0; } The space before 'a=0' is only two characters, how to make it 8 characters ? Thanks. 'Indent' question in C-mode Date: Thu, 18 Jan 2007 21:45:41 +0100 Organization: Guest of ProXad - France Message-ID: <45afdc56$0$387$426a74cc@news.free.fr> References: <1169143219.492572.61130@m58g2000cwm.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1169156531 27260 80.91.229.12 (18 Jan 2007 21:42:11 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 18 Jan 2007 21:42:11 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jan 18 22:42:00 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1H7f0u-0006uL-9K for geh-help-gnu-emacs@m.gmane.org; Thu, 18 Jan 2007 22:41:40 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H7f0v-00051J-5c for geh-help-gnu-emacs@m.gmane.org; Thu, 18 Jan 2007 16:41:41 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!tiscali!newsfeed1.ip.tiscali.net!news.tiscali.fr!proxad.net!cleanfeed3-b.proxad.net!nnrp19-2.free.fr!not-for-mail User-Agent: Thunderbird 1.5.0.9 (Windows/20061207) Original-Newsgroups: gnu.emacs.help In-Reply-To: <1169143219.492572.61130@m58g2000cwm.googlegroups.com> Original-Lines: 17 Original-NNTP-Posting-Date: 18 Jan 2007 21:45:11 MET Original-NNTP-Posting-Host: 82.224.162.129 Original-X-Trace: 1169153111 news-3.free.fr 387 82.224.162.129:2240 Original-X-Complaints-To: abuse@proxad.net Original-Xref: shelby.stanford.edu gnu.emacs.help:144829 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:40435 Archived-At: volunteers@gmail.com wrote: > When I type some C code such as: > if(1) > { > a = 0; > } > > The space before 'a=0' is automatic two characters, how to make it 8 > characters ? Thanks. You can do this: (setq tab-stop-list '(8 16 24 32 40 48 56 64 72)) ;and so on -- R.N.