.-- Leo:
| I can't find the change. Could you attach it here?

Sure.  I think there may be a lag of a day between commits and the public
anon repository being updated.  Also I'm newish with arch so I could have
screwed up the commit :)

Sasha
--- orig/lisp/muse-blosxom.el
+++ mod/lisp/muse-blosxom.el
@@ -234,11 +234,11 @@
   (goto-char (point-min))
   (insert "#date " (format-time-string "%Y-%m-%d-%H-%M")
           "\n#title " title)
-  (unless (string= category "")
-    (insert
-     (if muse-blosxom-use-tags
-         (concat "\n#tags " (mapconcat #'identity category ","))
-       (concat "\n#category " category))))
+  (if muse-blosxom-use-tags
+      (if (> (length category) 0)
+          (insert (concat "\n#tags " (mapconcat #'identity category ","))))
+    (unless (string= category "")
+      (insert (concat "\n#category " category))))
   (insert "\n\n")
   (forward-line 2))
_______________________________________________
Muse-el-discuss mailing list
[email protected]
https://mail.gna.org/listinfo/muse-el-discuss

Reply via email to