Re: Exporting tables from python code block: Wrong type argument: markerp, nil

2022-08-03 Thread Darren Syzling
>
>
> Note that a bug was recently found in Emacs 29 relating to byte
> compilation which was generating this error. Apparently it also causes
> problems with backwards compatibility of *.elc files.
>
> Not sure if it has been fixed in Emacs master yet, but my recommendation
> would be to do a git pull for Emacs, followed by a make extraclean,
> ./autogent.sh, ./configure and make and then a rebuild of any additional
> packages you have installed.
>
>
Tim thanks for confirming that this may be an issue with the latest Emacs
version, I will try what you suggest and also see if I can track down the
related byte compilation bug.

Regards
Darren


Exporting tables from python code block: Wrong type argument: markerp, nil

2022-08-02 Thread Darren Syzling
I'm not sure whether this is an issue with orgmode or my recent Emacs
build, I'm struggling to export orgmode tables from a python code block to
html/pdf.

Version info:
orgmode 9.5.4
GNU Emacs 29.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.20, cairo
version 1.16.0) of 2022-07-29

Note my Emacs is a custom build with native compilation, json and GTK
support - which may be an issue - i.e. taken straight from the latest code
in github.

My simple test case would be something like:

#+begin_src python :results value raw :exports both
  import pandas as pd
  from tabulate import tabulate
  df = pd.DataFrame({'A': [1, 2], 'B': [3, 4]})
  return tabulate(df, headers=df.columns, tablefmt='orgtbl')
#+end_src

If I execute the code in the editor the org-mode table appears in the
results. If I export to html or pdf I get the
error: org-babel-insert-result: Wrong type argument: markerp, nil.

Even a simple example such as the following fails to export but will show
inline.
#+begin_src python :results table :exports both
   return [['A', 1], ['B', 2]]
#+end_src

Stack trace on failure is below - hence why I was concerned with the custom
Emacs build:
  jit-lock--run-functions(248 324)
  jit-lock-fontify-now(248 #>)
  org-font-lock-ensure(248 #>)
  org-table-align()
  org-table-next-field()
  funcall-interactively(org-table-next-field)
  #(org-table-next-field nil nil)
  call-interactively@ido-cr+-record-current-command(# org-table-next-field nil nil)
  apply(call-interactively@ido-cr+-record-current-command # (org-table-next-field nil nil))
  call-interactively(org-table-next-field nil nil)
  org-cycle()
  org-babel-insert-result("||   A |   B |\n|+-+-|\n|  0 |
1 |..." ("raw" "value" "replace") ("python" "import pandas as pd\nfrom
tabulate import tabulate\n..." ((:colname-names) (:rowname-names)
(:result-params "raw" "value" "replace") (:result-type . value) (:results .
"raw value replace") (:exports . "both") (:cache . "no") (:hlines . "no")
(:noweb . "no") (:session . "none") (:tangle . "no")) "" nil 11 "(ref:%s)")
nil "python")
  org-babel-execute-src-block(nil ("python" "import pandas as pd\nfrom
tabulate import tabulate\n..." ((:colname-names) (:rowname-names)
(:result-params "replace" "value" "raw") (:result-type . value) (:results .
"replace value raw") (:exports . "both") (:tangle . "no") (:session .
"none") (:noweb . "no") (:hlines . "no") (:cache . "no")) "" nil 11
"(ref:%s)"))
  org-babel-exp-results(("python" "import pandas as pd\nfrom tabulate
import tabulate\n..." ((:cache . "no") (:colname-names) (:exports . "both")
(:hlines . "no") (:noweb . "no") (:result-params "replace" "value" "raw")
(:result-type . value) (:results . "replace value raw") (:rowname-names)
(:session . "none") (:tangle . "no")) "" nil 11 "(ref:%s)") block nil
"8ef5c3d71f4f16777939d1b561458e5435a5e4a4")
  org-babel-exp-do-export(("python" "import pandas as pd\nfrom tabulate
import tabulate\n..." ((:cache . "no") (:colname-names) (:exports . "both")
(:hlines . "no") (:noweb . "no") (:result-params "replace" "value" "raw")
(:result-type . value) (:results . "replace value raw") (:rowname-names)
(:session . "none") (:tangle . "no")) "" nil 11 "(ref:%s)") block
"8ef5c3d71f4f16777939d1b561458e5435a5e4a4")
  org-babel-exp-src-block()
  org-babel-exp-process-buffer()
  org-export-as(html nil nil nil (:output-file "test-case.html"))
  org-export-to-file(html "test-case.html" nil nil nil nil nil)
  org-html-export-to-html(nil nil nil nil)
  org-export-dispatch(nil)
  funcall-interactively(org-export-dispatch nil)
  #(org-export-dispatch nil nil)
  call-interactively@ido-cr+-record-current-command(# org-export-dispatch nil nil)
  apply(call-interactively@ido-cr+-record-current-command # (org-export-dispatch nil nil))
  call-interactively(org-export-dispatch nil nil)
  command-execute(org-export-dispatch)


 Darren