<?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: C: IDE of choice</title>
	<atom:link href="http://johannes.jakeapp.com/blog/category/happy-hacking/200904/c-ide-of-choice/feed" rel="self" type="application/rss+xml" />
	<link>http://johannes.jakeapp.com/blog/category/happy-hacking/200904/c-ide-of-choice</link>
	<description>Johannes Buchner&#039;s blog about advanced usage of your operating system</description>
	<lastBuildDate>Mon, 05 Jul 2010 04:04:53 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: JohannesBuchner</title>
		<link>http://johannes.jakeapp.com/blog/category/happy-hacking/200904/c-ide-of-choice/comment-page-1#comment-3</link>
		<dc:creator>JohannesBuchner</dc:creator>
		<pubDate>Sun, 19 Apr 2009 01:01:14 +0000</pubDate>
		<guid isPermaLink="false">http://johannes.jakeapp.com/blog/?p=10#comment-3</guid>
		<description>REPLY:
You are doing it wrong.
&lt;pre&gt;&lt;code&gt;switch (x) {
case FOO:
return y;
case BAR:
case BAZ:
z += y;
default:
return z;
}&lt;/code&gt;&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>REPLY:<br />
You are doing it wrong.</p>
<pre><code>switch (x) {
case FOO:
return y;
case BAR:
case BAZ:
z += y;
default:
return z;
}</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: panzi</title>
		<link>http://johannes.jakeapp.com/blog/category/happy-hacking/200904/c-ide-of-choice/comment-page-1#comment-2</link>
		<dc:creator>panzi</dc:creator>
		<pubDate>Sun, 19 Apr 2009 00:22:40 +0000</pubDate>
		<guid isPermaLink="false">http://johannes.jakeapp.com/blog/?p=10#comment-2</guid>
		<description>As a matter of fact I only intend to indent with tabs. ;)&lt;br /&gt;
However, I do not indent &quot;case:&quot;. I usually indent code between { } by one tab. So this would lead to:
&lt;pre&gt;switch (x) {
case FOO:
return y;
case BAR:
case BAZ:
z += y;
default:
return z;
}&lt;/pre&gt;
Well this is ugly. Instead I do:
&lt;pre&gt;switch (x) {
case FOO:
return y;
case BAR:
case BAZ:
z += y;
default:
return z;
}&lt;/pre&gt;
PS: Everything else is a criminal indent. :P
</description>
		<content:encoded><![CDATA[<p>As a matter of fact I only intend to indent with tabs. ;)<br />
However, I do not indent &#8220;case:&#8221;. I usually indent code between { } by one tab. So this would lead to:</p>
<pre>switch (x) {
case FOO:
return y;
case BAR:
case BAZ:
z += y;
default:
return z;
}</pre>
<p>Well this is ugly. Instead I do:</p>
<pre>switch (x) {
case FOO:
return y;
case BAR:
case BAZ:
z += y;
default:
return z;
}</pre>
<p>PS: Everything else is a criminal indent. :P</p>
]]></content:encoded>
	</item>
</channel>
</rss>
