For some semi-short time, org-ido-switchb has been broken, complaining
about wrong type arguments.  The attached one-line patch corrects
this.
--- org.el.orig	2009-03-26 11:38:36.000000000 -0400
+++ org.el	2009-03-26 11:39:09.000000000 -0400
@@ -12624,7 +12624,7 @@
                      (t                 (org-buffer-list)))))
     (switch-to-buffer
      (org-ido-completing-read "Org buffer: "
-                              (mapcar 'buffer-name blist)
+                              (mapcar 'list (mapcar 'buffer-name blist))
                               nil t))))
 
 (defun org-buffer-list (&optional predicate exclude-tmp)
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to