<?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 and External Processes</title>
	<atom:link href="http://curiousprogrammer.wordpress.com/2009/01/07/emacs-and-external-processes/feed/" rel="self" type="application/rss+xml" />
	<link>http://curiousprogrammer.wordpress.com/2009/01/07/emacs-and-external-processes/</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: An Ediff Tutorial &#171; A Curious Programmer</title>
		<link>http://curiousprogrammer.wordpress.com/2009/01/07/emacs-and-external-processes/#comment-7198</link>
		<dc:creator><![CDATA[An Ediff Tutorial &#171; A Curious Programmer]]></dc:creator>
		<pubDate>Thu, 15 Jan 2009 21:19:28 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=48#comment-7198</guid>
		<description><![CDATA[[...] One thing that isn&#8217;t well highlighted (so to speak) is how well ediff drills down on the exact change. It doesn&#8217;t just say &#8220;this line is different to this line&#8221;, it focuses on the exact change within the line. You can easily see here the tags that have been added to an old revision of one of my earlier posts. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] One thing that isn&#8217;t well highlighted (so to speak) is how well ediff drills down on the exact change. It doesn&#8217;t just say &#8220;this line is different to this line&#8221;, it focuses on the exact change within the line. You can easily see here the tags that have been added to an old revision of one of my earlier posts. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jared</title>
		<link>http://curiousprogrammer.wordpress.com/2009/01/07/emacs-and-external-processes/#comment-7191</link>
		<dc:creator><![CDATA[Jared]]></dc:creator>
		<pubDate>Sun, 11 Jan 2009 21:34:07 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=48#comment-7191</guid>
		<description><![CDATA[Hi Steve,

Very useful information there.  Emacs is pretty TMTOWTDI too eh? :)  And no, I didn&#039;t use a prefix arg so it opened in another buffer but I will next time.

Thanks very much]]></description>
		<content:encoded><![CDATA[<p>Hi Steve,</p>
<p>Very useful information there.  Emacs is pretty TMTOWTDI too eh? <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   And no, I didn&#8217;t use a prefix arg so it opened in another buffer but I will next time.</p>
<p>Thanks very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Vinoski</title>
		<link>http://curiousprogrammer.wordpress.com/2009/01/07/emacs-and-external-processes/#comment-7190</link>
		<dc:creator><![CDATA[Steve Vinoski]]></dc:creator>
		<pubDate>Sun, 11 Jan 2009 21:23:37 +0000</pubDate>
		<guid isPermaLink="false">http://curiousprogrammer.wordpress.com/?p=48#comment-7190</guid>
		<description><![CDATA[You could use replace-regexp, like this:

M-x replace-regexp[enter]
\(.\{72\}\)[enter]
\1[ctrl-q][ctrl-j][enter]

where the items in [] are keypresses. The regex is pretty much the same as what you have there in perl, except with more backslashes, and the &quot;ctrl-q ctrl-j&quot; thing is needed to get a newline into the replacement text.

Also, you could shorten your perl like this:

perl -pe &#039;s/(.{72})/$1\n/g&#039;

Lastly, I assume you used a prefix arg on your M-&#124; too, since that would cause the perl output to replace the region directly.]]></description>
		<content:encoded><![CDATA[<p>You could use replace-regexp, like this:</p>
<p>M-x replace-regexp[enter]<br />
\(.\{72\}\)[enter]<br />
\1[ctrl-q][ctrl-j][enter]</p>
<p>where the items in [] are keypresses. The regex is pretty much the same as what you have there in perl, except with more backslashes, and the &#8220;ctrl-q ctrl-j&#8221; thing is needed to get a newline into the replacement text.</p>
<p>Also, you could shorten your perl like this:</p>
<p>perl -pe &#8216;s/(.{72})/$1\n/g&#8217;</p>
<p>Lastly, I assume you used a prefix arg on your M-| too, since that would cause the perl output to replace the region directly.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
