Martyn Jago <martyn.j...@btinternet.com> writes: > There is a bug running babel on Emacs 22.1.1 with a minimal init file. >
[...] > > The following fails: > > * Test fails > > #+begin_src emacs-lisp :results silent > > "hello there" > > #+end_src > [...] The problem appears to be associated with the way `member' works: - on Emacs 23+ the following doesn't generate an error - on Emacs 22 it generates "Wrong type argument: listp, 58" #+begin_src emacs-lisp (member 116 58) #+end_src `org-babel-balanced-split' appears to rely on not generating an error when the `member' LIST parameter is actually a number. Best, Martyn