From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: html-mode indentation clashes with skeleton-mode Date: Fri, 29 Jun 2007 10:27:23 -0400 Message-ID: References: <87bqf6iank.fsf@nospam.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1183128041 8243 80.91.229.12 (29 Jun 2007 14:40:41 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 29 Jun 2007 14:40:41 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Jun 29 16:40:39 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 1I4HeI-0008Gi-HG for geh-help-gnu-emacs@m.gmane.org; Fri, 29 Jun 2007 16:40:38 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I4HeH-0003Yw-83 for geh-help-gnu-emacs@m.gmane.org; Fri, 29 Jun 2007 10:40:37 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news1.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.umontreal.ca!news.umontreal.ca.POSTED!not-for-mail Original-NNTP-Posting-Date: Fri, 29 Jun 2007 09:27:23 -0500 Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) Cancel-Lock: sha1:c0c/MIwC8Ggrr8ZOsMvEylhREuc= Original-Lines: 18 X-Usenet-Provider: http://www.giganews.com Original-NNTP-Posting-Host: 132.204.27.213 Original-X-Trace: sv3-j3IGzrldZwA7pkhVUpFoR94MOsDJxrtHXBmeQu1DRrx0B7AReHIRaI820vgAFHOL0+twIqCu7hdLy6r!0BiTaXc76yQ4RCXJh8hc/T+eR/FQu7SanyVekEkfctix+yT8QEaRFqjG/iEvCplt+XPq+5p4QQpK!3qi1vN3bh1FcXJBWGQ== Original-X-Complaints-To: abuse@umontreal.ca X-DMCA-Complaints-To: abuse@umontreal.ca X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.35 Original-Xref: shelby.stanford.edu gnu.emacs.help:149760 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:45348 Archived-At: > Since I've upgraded to Emacs 22, html-mode hasn't worked correctly > with skeleton-mode. It's the same problem described in this post: > http://groups.google.com/group/gnu.emacs.help/browse_thread/thread/f51d7cc058221c52/85bfbc4da33f3c3c > ..and shown in this screen capture: > http://script.hu/skel.png > Is there a way to prevent this or disable html-mode indentation > altogether? I've tried setting indent-tabs-mode to nil with no luck. > I'm using Emacs 22.1.1. Fix your skeleton. As the doc indicates, \n inserts a newline and then indents the new line. In your case you want to indent the current line before inserting the \n, so you want to add > before \n. Stefan