<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bluehorn's Blog &#187; emacs</title>
	<atom:link href="http://www.landschoff.net/blog/tag/emacs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.landschoff.net/blog</link>
	<description>Ramblings of Torsten Landschoff</description>
	<lastBuildDate>Sun, 07 Nov 2010 18:24:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Emacs: Marking lines in source code</title>
		<link>http://www.landschoff.net/blog/2009/10/emacs-marking-lines-in-source-code/</link>
		<comments>http://www.landschoff.net/blog/2009/10/emacs-marking-lines-in-source-code/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 14:08:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[lisp]]></category>

		<guid isPermaLink="false">http://www.landschoff.net/blog/?p=60</guid>
		<description><![CDATA[Today I ported some code to a new API. What I really like about that API upgrade: They changed a structure of the interface to a completely new structure, which basically had the same contents with a few new fields. Of course, the order has changed as well and the field names were revised. Comparing [...]]]></description>
			<content:encoded><![CDATA[<p>Today I ported some code to a new API. What I really like about that API upgrade: They changed a structure of the interface to a completely new structure, which basically had the same contents with a few new fields. Of course, the order has changed as well and the field names were revised.</p>
<p>Comparing those structure definitions is really no joy, I wished I were able to mark what I dealt with in the header files. With Emacs, that was really a trivial task:</p>
<pre lang="lisp">
(defun mark-overlay ()
  "Marks the region using a special background color."
  (interactive)
  (let ((ovl (make-overlay (point) (mark))))
    (overlay-put ovl 'face '(:background "light green"))))

(global-set-key [?\C-+] 'mark-overlay)
</pre>
<p>That was easy. Simple hitting <tt>^+</tt> with the region I dealt with now notes that by adding a green background.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.landschoff.net/blog/2009/10/emacs-marking-lines-in-source-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

