<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Autoindentation</title>
	<atom:link href="http://nflath.com/2009/08/autoindentation/feed/" rel="self" type="application/rss+xml" />
	<link>http://nflath.com/2009/08/autoindentation/</link>
	<description>Technology-related ideas, mainly involving Emacs</description>
	<pubDate>Sat, 19 May 2012 08:59:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: nflath</title>
		<link>http://nflath.com/2009/08/autoindentation/comment-page-1/#comment-285</link>
		<dc:creator>nflath</dc:creator>
		<pubDate>Fri, 11 Sep 2009 05:00:04 +0000</pubDate>
		<guid isPermaLink="false">http://nflath.com/?p=272#comment-285</guid>
		<description>RyanL Yeah, that advice seems to work as well.</description>
		<content:encoded><![CDATA[<p>RyanL Yeah, that advice seems to work as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://nflath.com/2009/08/autoindentation/comment-page-1/#comment-284</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Fri, 11 Sep 2009 02:00:23 +0000</pubDate>
		<guid isPermaLink="false">http://nflath.com/?p=272#comment-284</guid>
		<description>Instead of a new line-killing function, try this simple advice and see if it works for you:

(defadvice kill-line (after fixup-whitespace activate)
  "Call fixup-whitespace after killing line."
  (save-excursion
    (if (looking-back "^\s*")
        (funcall indent-line-function)
      (fixup-whitespace))))</description>
		<content:encoded><![CDATA[<p>Instead of a new line-killing function, try this simple advice and see if it works for you:</p>
<p>(defadvice kill-line (after fixup-whitespace activate)<br />
  &#8220;Call fixup-whitespace after killing line.&#8221;<br />
  (save-excursion<br />
    (if (looking-back &#8220;^\s*&#8221;)<br />
        (funcall indent-line-function)<br />
      (fixup-whitespace))))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How do I make paragraphs auto indent when I submit essays if I&#8217;m using a PHP MYSQL system? &#124; Html Wrap</title>
		<link>http://nflath.com/2009/08/autoindentation/comment-page-1/#comment-187</link>
		<dc:creator>How do I make paragraphs auto indent when I submit essays if I&#8217;m using a PHP MYSQL system? &#124; Html Wrap</dc:creator>
		<pubDate>Sat, 08 Aug 2009 09:49:54 +0000</pubDate>
		<guid isPermaLink="false">http://nflath.com/?p=272#comment-187</guid>
		<description>[...] Autoindentation « Musings of a Software Engineering Student [...]</description>
		<content:encoded><![CDATA[<p>[...] Autoindentation « Musings of a Software Engineering Student [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil Hudson</title>
		<link>http://nflath.com/2009/08/autoindentation/comment-page-1/#comment-186</link>
		<dc:creator>Phil Hudson</dc:creator>
		<pubDate>Fri, 07 Aug 2009 21:23:46 +0000</pubDate>
		<guid isPermaLink="false">http://nflath.com/?p=272#comment-186</guid>
		<description>Really excellent series of posts. Great content, great style, readable, brief, to the point.

Just added a note re the defadvices above to the wiki page, reproduced below for those who land here:

 Note that mark-even-if-inactive is only useful/necessary/possible when transient mark mode is on (which is now the default). The line:

  (let ((mark-even-if-inactive t))

would be better written:

  (let ((mark-even-if-inactive transient-mark-mode))

so these cool defadvices can also be used successfully by those who prefer to disable transient mark mode (even when they occasionally enable it temporarily).</description>
		<content:encoded><![CDATA[<p>Really excellent series of posts. Great content, great style, readable, brief, to the point.</p>
<p>Just added a note re the defadvices above to the wiki page, reproduced below for those who land here:</p>
<p> Note that mark-even-if-inactive is only useful/necessary/possible when transient mark mode is on (which is now the default). The line:</p>
<p>  (let ((mark-even-if-inactive t))</p>
<p>would be better written:</p>
<p>  (let ((mark-even-if-inactive transient-mark-mode))</p>
<p>so these cool defadvices can also be used successfully by those who prefer to disable transient mark mode (even when they occasionally enable it temporarily).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eugene</title>
		<link>http://nflath.com/2009/08/autoindentation/comment-page-1/#comment-184</link>
		<dc:creator>Eugene</dc:creator>
		<pubDate>Fri, 07 Aug 2009 18:03:46 +0000</pubDate>
		<guid isPermaLink="false">http://nflath.com/?p=272#comment-184</guid>
		<description>looks like some html conversion went awry with (&amp;optional arg)</description>
		<content:encoded><![CDATA[<p>looks like some html conversion went awry with (&amp;optional arg)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Ott</title>
		<link>http://nflath.com/2009/08/autoindentation/comment-page-1/#comment-183</link>
		<dc:creator>Alex Ott</dc:creator>
		<pubDate>Fri, 07 Aug 2009 16:55:14 +0000</pubDate>
		<guid isPermaLink="false">http://nflath.com/?p=272#comment-183</guid>
		<description>Using such advices i often get errors when trying insert new text into buffers. I couldn't find source of problem, so i disable them :-(</description>
		<content:encoded><![CDATA[<p>Using such advices i often get errors when trying insert new text into buffers. I couldn&#8217;t find source of problem, so i disable them <img src='http://nflath.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

