summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-11-06 00:16:50 +0100
committerGravatar Tom Willemsen2012-11-06 00:16:50 +0100
commit0c2369bdf62eedc7cbbf93c589c8021874b1d9e6 (patch)
tree2725b7a4ec494ef89aad3c9734d8a5adc4b05fd4
parentb44aec3673b303a60ca5ec02c25f06f7865d3403 (diff)
downloadsite-0c2369bdf62eedc7cbbf93c589c8021874b1d9e6.tar.gz
site-0c2369bdf62eedc7cbbf93c589c8021874b1d9e6.zip
Add "Testing org-blog fix" archive post
-rw-r--r--posts/Testing_org-blog_fix.mdwn23
1 files changed, 23 insertions, 0 deletions
diff --git a/posts/Testing_org-blog_fix.mdwn b/posts/Testing_org-blog_fix.mdwn
new file mode 100644
index 0000000..4889a9f
--- /dev/null
+++ b/posts/Testing_org-blog_fix.mdwn
@@ -0,0 +1,23 @@
+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:
+
+ Selecting deleted buffer
+
+It turns out that this is because of this little piece of code:
+
+[[! format el """
+;; if buffer is already open, kill it
+(if index-buffer
+ (kill-buffer index-buffer))
+"""]]
+
+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.
+
+[[!meta date="2012-05-10 01:39:00"]]
+[[!tag emacs elisp org-blog test]]