summaryrefslogtreecommitdiffstats
path: root/blog/blog-2012-05-10-0130.org
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-06-21 21:24:54 +0200
committerGravatar Tom Willemsen2012-06-21 21:24:54 +0200
commitc90daec5f4a91cf1041a5a61411d860ea4329ece (patch)
treecd8932e1dd5dacdc183a91b55ca4d5c7580e9d36 /blog/blog-2012-05-10-0130.org
downloadorgweb-c90daec5f4a91cf1041a5a61411d860ea4329ece.tar.gz
orgweb-c90daec5f4a91cf1041a5a61411d860ea4329ece.zip
Initial commit
Diffstat (limited to 'blog/blog-2012-05-10-0130.org')
-rw-r--r--blog/blog-2012-05-10-0130.org25
1 files changed, 25 insertions, 0 deletions
diff --git a/blog/blog-2012-05-10-0130.org b/blog/blog-2012-05-10-0130.org
new file mode 100644
index 0000000..379c20d
--- /dev/null
+++ b/blog/blog-2012-05-10-0130.org
@@ -0,0 +1,25 @@
+#+TITLE: Testing org-blog fix
+#+DESCRIPTION: Let's see if it works
+
+I've just adjusted just a little bit of code in org-blog, and now I
+want to see if it works correctly.
+
+I was getting the following error message when I would try and export
+an ~org-blog~ project:
+
+#+BEGIN_EXAMPLE
+Selecting deleted buffer
+#+END_EXAMPLE
+
+It turns out that this is because of this little piece of code:
+
+#+BEGIN_SRC emacs-lisp
+;; if buffer is already open, kill it
+(if index-buffer
+ (kill-buffer index-buffer))
+#+END_SRC
+
+I'm guessing it wasn't originally meant as a function for
+~org-publish~, well it was meant as an index function, but that
+feature seems to have changed over time. Let's see what can be made of
+it.