<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Emacs Directory Aliases</title>
	<atom:link href="http://curiousprogrammer.wordpress.com/2009/02/18/emacs-directory-aliases/feed/" rel="self" type="application/rss+xml" />
	<link>http://curiousprogrammer.wordpress.com/2009/02/18/emacs-directory-aliases/</link>
	<description>Leveraging Perl and Emacs</description>
	<lastBuildDate>Tue, 07 May 2013 11:25:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Jared</title>
		<link>http://curiousprogrammer.wordpress.com/2009/02/18/emacs-directory-aliases/#comment-8482</link>
		<dc:creator><![CDATA[Jared]]></dc:creator>
		<pubDate>Tue, 16 Nov 2010 22:03:32 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=234#comment-8482</guid>
		<description><![CDATA[Good to know!  And although I might be crazy enough to redifine identity, I&#039;m not crazy enough to redefine car :)

Cheers]]></description>
		<content:encoded><![CDATA[<p>Good to know!  And although I might be crazy enough to redifine identity, I&#8217;m not crazy enough to redefine car <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://curiousprogrammer.wordpress.com/2009/02/18/emacs-directory-aliases/#comment-8481</link>
		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Tue, 16 Nov 2010 21:32:41 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=234#comment-8481</guid>
		<description><![CDATA[#&#039; is mostly a carryover from Common Lisp that doesn&#039;t really do anything in Elisp. It&#039;s the same as using (function), which, in Elisp, is only used to tell the compiler to follow through to that symbol and compile it too. In practice, not only is this almost always unnecessary because the symbol would have already been compiled anyway (defined in a file that was already being compiled), but I&#039;ve found that the compiler doesn&#039;t *actually* quite behave this way.

And also since it&#039;s uglier and requires an extra character, I never bother using it in Elisp at all. :-)

In this specific case, car is a built-in, so using #&#039; couldn&#039;t do anything unless you&#039;re a crazy person who has somehow redefined car in lisp.]]></description>
		<content:encoded><![CDATA[<p>#&#8217; is mostly a carryover from Common Lisp that doesn&#8217;t really do anything in Elisp. It&#8217;s the same as using (function), which, in Elisp, is only used to tell the compiler to follow through to that symbol and compile it too. In practice, not only is this almost always unnecessary because the symbol would have already been compiled anyway (defined in a file that was already being compiled), but I&#8217;ve found that the compiler doesn&#8217;t *actually* quite behave this way.</p>
<p>And also since it&#8217;s uglier and requires an extra character, I never bother using it in Elisp at all. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>In this specific case, car is a built-in, so using #&#8217; couldn&#8217;t do anything unless you&#8217;re a crazy person who has somehow redefined car in lisp.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://curiousprogrammer.wordpress.com/2009/02/18/emacs-directory-aliases/#comment-8463</link>
		<dc:creator><![CDATA[Jared]]></dc:creator>
		<pubDate>Thu, 11 Nov 2010 20:02:18 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=234#comment-8463</guid>
		<description><![CDATA[Hi Chris,

That&#039;s another thing I noted from the perlsofwisdom blog I linked to in my &lt;a href=&quot;http://curiousprogrammer.wordpress.com/2010/11/10/clever-emacs-lisp/&quot; rel=&quot;nofollow&quot;&gt;clever emacs lisp&lt;/a&gt; post (although isn&#039;t it more usual to use #&#039; in this instance rather than just &#039; ?).  I really need to tidy some of my code up at some stage.

Cheers]]></description>
		<content:encoded><![CDATA[<p>Hi Chris,</p>
<p>That&#8217;s another thing I noted from the perlsofwisdom blog I linked to in my <a href="http://curiousprogrammer.wordpress.com/2010/11/10/clever-emacs-lisp/" rel="nofollow">clever emacs lisp</a> post (although isn&#8217;t it more usual to use #&#8217; in this instance rather than just &#8216; ?).  I really need to tidy some of my code up at some stage.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://curiousprogrammer.wordpress.com/2009/02/18/emacs-directory-aliases/#comment-8461</link>
		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Thu, 11 Nov 2010 13:08:21 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=234#comment-8461</guid>
		<description><![CDATA[Wrapping a simple function in another simple function?

(mapcar (lambda (e) (car e)) *dired-dirs*)

No need for that. :-)

(mapcar &#039;car *dired-dirs*)]]></description>
		<content:encoded><![CDATA[<p>Wrapping a simple function in another simple function?</p>
<p>(mapcar (lambda (e) (car e)) *dired-dirs*)</p>
<p>No need for that. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>(mapcar &#8216;car *dired-dirs*)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://curiousprogrammer.wordpress.com/2009/02/18/emacs-directory-aliases/#comment-7287</link>
		<dc:creator><![CDATA[Jared]]></dc:creator>
		<pubDate>Thu, 26 Feb 2009 22:17:28 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=234#comment-7287</guid>
		<description><![CDATA[You&#039;re welcome Kevin :)]]></description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome Kevin <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kevinmiter</title>
		<link>http://curiousprogrammer.wordpress.com/2009/02/18/emacs-directory-aliases/#comment-7285</link>
		<dc:creator><![CDATA[kevinmiter]]></dc:creator>
		<pubDate>Thu, 26 Feb 2009 02:46:57 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=234#comment-7285</guid>
		<description><![CDATA[Hi Jared,
I misunderstood what Reynaldo said. With your explain, I know it. Now it works well.^_^]]></description>
		<content:encoded><![CDATA[<p>Hi Jared,<br />
I misunderstood what Reynaldo said. With your explain, I know it. Now it works well.^_^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://curiousprogrammer.wordpress.com/2009/02/18/emacs-directory-aliases/#comment-7281</link>
		<dc:creator><![CDATA[Jared]]></dc:creator>
		<pubDate>Tue, 24 Feb 2009 07:47:25 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=234#comment-7281</guid>
		<description><![CDATA[Hi Kevin,

I also have C-SPC bound to set-mark.  Have you enabled ido mode with (ido-mode t) or something similar?  

When following Reynaldo&#039;s tip, the list has already been narrowed after typing .c.  Pressing C-SPC after this re-enters ido mode with the new filtered list that you can now apply other filters to or select between elements using the arrow keys.]]></description>
		<content:encoded><![CDATA[<p>Hi Kevin,</p>
<p>I also have C-SPC bound to set-mark.  Have you enabled ido mode with (ido-mode t) or something similar?  </p>
<p>When following Reynaldo&#8217;s tip, the list has already been narrowed after typing .c.  Pressing C-SPC after this re-enters ido mode with the new filtered list that you can now apply other filters to or select between elements using the arrow keys.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kevinmiter</title>
		<link>http://curiousprogrammer.wordpress.com/2009/02/18/emacs-directory-aliases/#comment-7280</link>
		<dc:creator><![CDATA[kevinmiter]]></dc:creator>
		<pubDate>Tue, 24 Feb 2009 02:45:43 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=234#comment-7280</guid>
		<description><![CDATA[@Reynaldo As you said, I try it : C-x C-f .c C-SPC , but nothing happens. I think this is because I bound C-SPC to set-mark. Can you tell me C-SPC means what function? Thanks.]]></description>
		<content:encoded><![CDATA[<p>@Reynaldo As you said, I try it : C-x C-f .c C-SPC , but nothing happens. I think this is because I bound C-SPC to set-mark. Can you tell me C-SPC means what function? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://curiousprogrammer.wordpress.com/2009/02/18/emacs-directory-aliases/#comment-7269</link>
		<dc:creator><![CDATA[Jared]]></dc:creator>
		<pubDate>Wed, 18 Feb 2009 20:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=234#comment-7269</guid>
		<description><![CDATA[Hi folks,

@Sacha - you&#039;re welcome! (it was a good post).  The autofinding in ido seems to be a bit hit and miss to me.  After waiting for half a second for the search in any directory it mostly finds what I wanted, but occasionally it doesn&#039;t.

@mazirian - I&#039;ve heard very good things about anything mode and it is definitely on my list of things to check out.

@Reynaldo - fantastic, I didn&#039;t know about that and it is exactly what I was talking about.  Thanks very much for your input.]]></description>
		<content:encoded><![CDATA[<p>Hi folks,</p>
<p>@Sacha &#8211; you&#8217;re welcome! (it was a good post).  The autofinding in ido seems to be a bit hit and miss to me.  After waiting for half a second for the search in any directory it mostly finds what I wanted, but occasionally it doesn&#8217;t.</p>
<p>@mazirian &#8211; I&#8217;ve heard very good things about anything mode and it is definitely on my list of things to check out.</p>
<p>@Reynaldo &#8211; fantastic, I didn&#8217;t know about that and it is exactly what I was talking about.  Thanks very much for your input.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reynaldo</title>
		<link>http://curiousprogrammer.wordpress.com/2009/02/18/emacs-directory-aliases/#comment-7268</link>
		<dc:creator><![CDATA[Reynaldo]]></dc:creator>
		<pubDate>Wed, 18 Feb 2009 17:13:22 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=234#comment-7268</guid>
		<description><![CDATA[I don&#039;t know If you meant this, but you can filter matches with ido mode.

Say you are looking for .c files, you can C-x C-f  .c C-SPC 

If it&#039;s not what you meant, just ignore me]]></description>
		<content:encoded><![CDATA[<p>I don&#8217;t know If you meant this, but you can filter matches with ido mode.</p>
<p>Say you are looking for .c files, you can C-x C-f  .c C-SPC </p>
<p>If it&#8217;s not what you meant, just ignore me</p>
]]></content:encoded>
	</item>
</channel>
</rss>
