<?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>bloggo ergo sum &#187; elisp</title>
	<atom:link href="http://bloggoergosum.com/tag/elisp/feed/" rel="self" type="application/rss+xml" />
	<link>http://bloggoergosum.com</link>
	<description></description>
	<lastBuildDate>Mon, 10 Oct 2011 04:42:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>First Things in my .emacs</title>
		<link>http://bloggoergosum.com/2006/07/02/first-things-in-my-emacs/</link>
		<comments>http://bloggoergosum.com/2006/07/02/first-things-in-my-emacs/#comments</comments>
		<pubDate>Mon, 03 Jul 2006 04:21:11 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[elisp]]></category>
		<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Lisp]]></category>

		<guid isPermaLink="false">http://bloggoergosum.us/2006/07/02/first-things-in-my-emacs/</guid>
		<description><![CDATA[Pardon the extra linebreaks. I don&#8217;t normally format my lisp code this way, but the layout of my blog makes this snippet linewrap and hard to read. (global-font-lock-mode t) (defvar autosave-dir "~/.emacs.d/autosave") (make-directory autosave-dir t) (defun auto-save-file-name-p (filename) (string-match "^#.*#$" (file-name-nondirectory filename))) (defun make-auto-save-file-name () (concat autosave-dir (if buffer-file-name (concat "#" (file-name-nondirectory buffer-file-name) "#") (expand-file-name [...]]]></description>
			<content:encoded><![CDATA[<p>Pardon the extra linebreaks.  I don&#8217;t normally format my lisp code this way, but the layout of my blog makes this snippet linewrap and hard to read.</p>
<pre lang="lisp">
(global-font-lock-mode t)

(defvar autosave-dir "~/.emacs.d/autosave")
(make-directory autosave-dir t)

(defun auto-save-file-name-p (filename)
  (string-match "^#.*#$"
                     (file-name-nondirectory filename)))

(defun make-auto-save-file-name ()
  (concat autosave-dir
          (if buffer-file-name
              (concat "#"
                         (file-name-nondirectory buffer-file-name)
                         "#")
            (expand-file-name (concat "#%"
                                                 (buffer-name)
                                                 "#")))))

(defvar backup-dir "~/.emacs.d/backup")
(make-directory backup-dir t)
(setq backup-directory-alist (list (cons "." backup-dir)))
</pre>
]]></content:encoded>
			<wfw:commentRss>http://bloggoergosum.com/2006/07/02/first-things-in-my-emacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

