emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Bug: Problem with ido-completing-read from org-table-export
@ 2009-08-03 15:31 Gregory Grubbs
  2009-08-04 15:15 ` Carsten Dominik
  0 siblings, 1 reply; 2+ messages in thread
From: Gregory Grubbs @ 2009-08-03 15:31 UTC (permalink / raw)
  To: emacs-orgmode

When exporting a table with ido-mode active, an error is raised in
org-ido-completing-read.  I think ido-completing-read is being called
with incorrect arguments, but the fix is beyond me.

Steps to reproduce the error:
Org-mode version: 6.28trans
Emacs version: GNU Emacs 23.0.91.1 (i486-pc-linux-gnu, GTK+ Version
2.16.0) of 2009-04-05 on palmer, modified by Debian


Turn on ido-mode: M-x ido-mode RET
visit a file using C-x C-f /tmp/test.org RET
Create a simple table:
|column a|column b|
|-
|one|two|
|three|four|

Org-magic-tabelize it by hitting TAB somewhere in a column

M-x org-table-export RET /tmp/test.csv

Here's the backtrace I get:

Debugger entered--Lisp error: (wrong-type-argument listp "orgtbl-to-tsv")
  #[(x) "\b@" [x] 1]("orgtbl-to-tsv")
  mapcar(#[(x) "\b@" [x] 1] ("orgtbl-to-tsv" "orgtbl-to-csv"
"orgtbl-to-latex" "orgtbl-to-html" "orgtbl-to-generic"
"orgtbl-to-texinfo" "orgtbl-to-orgtbl"))
  org-ido-completing-read("Format: " ("orgtbl-to-tsv" "orgtbl-to-csv"
"orgtbl-to-latex" "orgtbl-to-html" "orgtbl-to-generic"
"orgtbl-to-texinfo" "orgtbl-to-orgtbl") nil nil "orgtbl-to-tsv")
  apply(org-ido-completing-read ("Format: " ("orgtbl-to-tsv"
"orgtbl-to-csv" "orgtbl-to-latex" "orgtbl-to-html" "orgtbl-to-generic"
"orgtbl-to-texinfo" "orgtbl-to-orgtbl") nil nil "orgtbl-to-tsv"))
  org-completing-read("Format: " ("orgtbl-to-tsv" "orgtbl-to-csv"
"orgtbl-to-latex" "orgtbl-to-html" "orgtbl-to-generic"
"orgtbl-to-texinfo" "orgtbl-to-orgtbl") nil nil "orgtbl-to-tsv")
  org-table-export()
  call-interactively(org-table-export t nil)
  execute-extended-command(nil)
  call-interactively(execute-extended-command nil nil)
  recursive-edit()
  byte-code("Æ\x10    @Ç=!

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

* Re: Bug: Problem with ido-completing-read from org-table-export
  2009-08-03 15:31 Bug: Problem with ido-completing-read from org-table-export Gregory Grubbs
@ 2009-08-04 15:15 ` Carsten Dominik
  0 siblings, 0 replies; 2+ messages in thread
From: Carsten Dominik @ 2009-08-04 15:15 UTC (permalink / raw)
  To: Gregory Grubbs; +Cc: emacs-orgmode

Fixed, thanks.

- Carsten

On Aug 3, 2009, at 5:31 PM, Gregory Grubbs wrote:

> When exporting a table with ido-mode active, an error is raised in
> org-ido-completing-read.  I think ido-completing-read is being called
> with incorrect arguments, but the fix is beyond me.
>
> Steps to reproduce the error:
> Org-mode version: 6.28trans
> Emacs version: GNU Emacs 23.0.91.1 (i486-pc-linux-gnu, GTK+ Version
> 2.16.0) of 2009-04-05 on palmer, modified by Debian
>
>
> Turn on ido-mode: M-x ido-mode RET
> visit a file using C-x C-f /tmp/test.org RET
> Create a simple table:
> |column a|column b|
> |-
> |one|two|
> |three|four|
>
> Org-magic-tabelize it by hitting TAB somewhere in a column
>
> M-x org-table-export RET /tmp/test.csv
>
> Here's the backtrace I get:
>
> Debugger entered--Lisp error: (wrong-type-argument listp "orgtbl-to- 
> tsv")
>   #[(x) "\b@" [x] 1]("orgtbl-to-tsv")
>   mapcar(#[(x) "\b@" [x] 1] ("orgtbl-to-tsv" "orgtbl-to-csv"
> "orgtbl-to-latex" "orgtbl-to-html" "orgtbl-to-generic"
> "orgtbl-to-texinfo" "orgtbl-to-orgtbl"))
>   org-ido-completing-read("Format: " ("orgtbl-to-tsv" "orgtbl-to-csv"
> "orgtbl-to-latex" "orgtbl-to-html" "orgtbl-to-generic"
> "orgtbl-to-texinfo" "orgtbl-to-orgtbl") nil nil "orgtbl-to-tsv")
>   apply(org-ido-completing-read ("Format: " ("orgtbl-to-tsv"
> "orgtbl-to-csv" "orgtbl-to-latex" "orgtbl-to-html" "orgtbl-to-generic"
> "orgtbl-to-texinfo" "orgtbl-to-orgtbl") nil nil "orgtbl-to-tsv"))
>   org-completing-read("Format: " ("orgtbl-to-tsv" "orgtbl-to-csv"
> "orgtbl-to-latex" "orgtbl-to-html" "orgtbl-to-generic"
> "orgtbl-to-texinfo" "orgtbl-to-orgtbl") nil nil "orgtbl-to-tsv")
>   org-table-export()
>   call-interactively(org-table-export t nil)
>   execute-extended-command(nil)
>   call-interactively(execute-extended-command nil nil)
>   recursive-edit()
>   byte-code("Æ\x10    @Ç=!
>
>
> _______________________________________________
> 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-08-04 15:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-08-03 15:31 Bug: Problem with ido-completing-read from org-table-export Gregory Grubbs
2009-08-04 15: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).