emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Small patch for org-ido-switchb
@ 2009-03-26 15:48 Chris Leyon
  2009-03-26 16:15 ` Carsten Dominik
  0 siblings, 1 reply; 2+ messages in thread
From: Chris Leyon @ 2009-03-26 15:48 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 143 bytes --]

For some semi-short time, org-ido-switchb has been broken, complaining
about wrong type arguments.  The attached one-line patch corrects
this.

[-- Attachment #2: ido-switchb.patch --]
[-- Type: text/x-diff, Size: 489 bytes --]

--- 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)

[-- Attachment #3: Type: text/plain, Size: 204 bytes --]

_______________________________________________
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

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-03-26 16:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-26 15:48 Small patch for org-ido-switchb Chris Leyon
2009-03-26 16:15 ` Carsten Dominik

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).