From 234f58218da08119432212dfe16bbe649b4c9827 Mon Sep 17 00:00:00 2001
From: David Maus <maus.david@gmail.com>
Date: Tue, 26 Jan 2010 17:21:26 +0100
Subject: [PATCH] fix small glitch in dmj/org-remove-redundant-tags

---
 org-hacks.org |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/org-hacks.org b/org-hacks.org
index 6d0c915..76a7dcd 100644
--- a/org-hacks.org
+++ b/org-hacks.org
@@ -860,7 +860,7 @@ headline or the #+FILETAGS: statement.
       (save-excursion
         (org-map-entries 
          '(lambda ()
-            (let ((alltags (split-string (org-entry-get (point) "ALLTAGS") ":"))
+            (let ((alltags (split-string (or (org-entry-get (point) "ALLTAGS") "") ":"))
                   local inherited tag)
               (dolist (tag alltags)
                 (if (get-text-property 0 'inherited tag)
-- 
1.6.5

