From: Christopher Witte <chris@witte.net.au>
To: Org Mode <emacs-orgmode@gnu.org>
Subject: Re: [ANN] Org-babel integrated into Org-mode
Date: Mon, 28 Jun 2010 13:32:29 +0200 [thread overview]
Message-ID: <AANLkTil-QYxuXibS9MKqrnyCYtZegY4DJT6CiOTSzHh1@mail.gmail.com> (raw)
In-Reply-To: <87wrtp78rg.fsf@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 3418 bytes --]
I'm having trouble getting the new version of babel to work with
haskell and R under Ubuntu 10.04 using emacs-snapshot. It works fine
for emacs-lisp. I had to change the variable LISPF in the Makefile
to:
LISPF = org.el \
.....
babel/ob.el \
babel/ob-table.el \
babel/ob-lob.el \
babel/ob-ref.el \
babel/ob-exp.el \
babel/ob-tangle.el \
babel/ob-comint.el \
babel/ob-keys.el \
babel/langs/ob-emacs-lisp.el \
babel/langs/ob-haskell.el \
babel/langs/ob-latex.el \
babel/langs/ob-sh.el \
babel/langs/ob-asymptote.el \
babel/langs/ob-R.el \
babel/langs/ob-gnuplot.el
otherwise I couldn't compile my .emacs file, which contains the following:
(require 'org-install)
;;(require 'org)
;;(require 'ob)
;;(require 'ob-tangle)
;; org-babel set up
(require 'ob-haskell)
(require 'ob-latex)
(require 'ob-sh)
(require 'ob-asymptote)
(require 'ob-R)
(require 'ob-gnuplot)
The following works fine:
#+tblname: example-table
| 1 |
| 2 |
| 3 |
| 4 |
#+source: table-length
#+begin_src emacs-lisp :var table=example-table
(length table)
#+end_src
#+results: table-length
: 4
But when I try the haskell equivalent:
#+source: table-length
#+begin_src haskell :var table=example-table
length table
#+end_src
I get:
executing haskell source code block
reference 'example-table' not found in this buffer
org-babel-ref-resolve-reference: reference 'example-table' not found
in this buffer
If I try:
#+source: table-length
#+begin_src haskell
length [1,2,3]
#+end_src
I get:
executing haskell source code block
org-babel-execute:haskell: Symbol's function definition is void: session
I also get a lot of warnings when I compile org-mode, see the attached
buiild log.
Thanks for your help,
Chris Witte.
On 23 June 2010 23:09, Eric Schulte <schulte.eric@gmail.com> wrote:
> Hi,
>
> I've just merged the babel branch into the main branch of Org-mode.
> This merge culminates much integration work by Dan Davison and Tom Dye,
> as well as myself.
>
> Babel is now part of Org-mode.
>
> The biggest changes are:
>
> 1) Babel now has documentation! It is part of Org-mode's documentation
>
> see Chapter 14 _Working With Source Code_
>
> also, the Babel keybindings are now listed in the refcard, and can be
> viewed from any Org-mode buffer by pressing C-c C-v h
>
> 2) Babel will now be loaded by default along with the rest of Org-mode.
> This means that *everyone* currently using babel will need to change
> their Emacs config and remove the (require 'org-babel-int) and/or
> (require 'org-babel) lines.
>
> Support for evaluating emacs-lisp code blocks is loaded by default.
> All other languages will need to be required explicitly. To conform
> to Emacs filename specifications all language require lines have been
> shortened from e.g.
>
> (require 'org-babel-sh)
>
> to
>
> (require 'ob-sh)
>
> Thanks -- Eric
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
[-- Attachment #2: build.log --]
[-- Type: text/x-log, Size: 34113 bytes --]
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org.el
In org-order-calendar-date-args:
org.el:14428:31:Warning: `european-calendar-style' is an obsolete variable (as
of Emacs 23.1); use `calendar-date-style' instead.
Wrote /home/cwitte/source/elisp/org-mode/lisp/org.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-agenda.el
In org-agenda-add-entry-to-org-agenda-diary-file:
org-agenda.el:7160:42:Warning: `european-calendar-style' is an obsolete
variable (as of Emacs 23.1); use `calendar-date-style' instead.
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-agenda.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-ascii.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-ascii.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-attach.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-attach.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-archive.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-archive.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-bbdb.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-bbdb.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-beamer.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-beamer.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-bibtex.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-bibtex.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-capture.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-capture.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-clock.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-clock.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-colview.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-colview.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-colview-xemacs.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-colview-xemacs.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-compat.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-compat.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-crypt.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-crypt.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-ctags.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-ctags.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-datetree.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-datetree.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-docview.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-docview.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-entities.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-entities.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-exp.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-exp.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-exp-blocks.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-exp-blocks.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-docbook.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-docbook.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-faces.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-faces.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-feed.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-feed.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-footnote.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-footnote.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-freemind.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-freemind.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-gnus.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-gnus.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-habit.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-habit.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-html.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-html.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-icalendar.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-icalendar.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-id.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-id.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-indent.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-indent.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-info.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-info.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-inlinetask.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-inlinetask.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-jsinfo.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-jsinfo.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-irc.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-irc.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-latex.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-latex.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-list.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-list.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-mac-message.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-mac-message.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-macs.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-macs.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-mew.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-mew.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-mhe.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-mhe.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-mks.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-mks.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-mobile.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-mobile.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-mouse.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-mouse.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-publish.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-publish.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-plot.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-plot.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-protocol.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-protocol.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-remember.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-remember.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-rmail.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-rmail.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-src.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-src.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-table.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-table.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-taskjuggler.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-taskjuggler.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-timer.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-timer.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-vm.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-vm.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-w3m.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-w3m.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-wl.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-wl.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-xoxo.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-xoxo.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/ob.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/ob.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/ob-table.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/ob-table.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/ob-lob.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/ob-lob.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/ob-ref.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/ob-ref.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/ob-exp.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/ob-exp.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/ob-tangle.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/ob-tangle.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/ob-comint.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/ob-comint.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/ob-keys.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/ob-keys.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/langs/ob-emacs-lisp.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/langs/ob-emacs-lisp.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/langs/ob-haskell.el
In org-babel-expand-body:haskell:
ob-haskell.el:55:61:Warning: malformed let binding: `(nth 1 (or
processed-params (org-babel-process-params params)))'
In org-babel-haskell-export-to-lhs:
ob-haskell.el:164:28:Warning: reference to free variable
`org-src-preserve-indentation'
In end of data:
ob-haskell.el:209:1:Warning: the following functions are not known to be
defined: first, org-babel-comint-with-output, session, case, output,
value, org-babel-ref-variables, org-babel-ruby-var-to-ruby,
org-remove-indentation
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/langs/ob-haskell.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/langs/ob-latex.el
In org-babel-execute:latex:
ob-latex.el:66:22:Warning: reference to free variable
`org-export-latex-packages-alist'
ob-latex.el:70:26:Warning: reference to free variable
`org-format-latex-options'
In org-babel-latex-body-to-tex-file:
ob-latex.el:87:16:Warning: reference to free variable
`org-format-latex-header'
ob-latex.el:90:17:Warning: reference to free variable
`org-export-latex-default-packages-alist'
ob-latex.el:91:16:Warning: reference to free variable
`org-export-latex-packages-alist'
ob-latex.el:92:16:Warning: reference to free variable
`org-format-latex-header-extra'
In org-babel-latex-tex-to-pdf:
ob-latex.el:108:16:Warning: reference to free variable
`org-latex-to-pdf-process'
ob-latex.el:129:13:Warning: reference to free variable
`org-export-pdf-remove-logfiles'
ob-latex.el:130:22:Warning: reference to free variable
`org-export-pdf-logfiles'
In end of data:
ob-latex.el:144:1:Warning: the following functions are not known to be
defined: org-create-formula-image, org-splice-latex-header, remove-if,
org-export-latex-fix-inputenc
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/langs/ob-latex.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/langs/ob-sh.el
In end of data:
ob-sh.el:203:1:Warning: the function `session' is not known to be defined.
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/langs/ob-sh.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/langs/ob-asymptote.el
In end of data:
ob-asymptote.el:158:1:Warning: the following functions are not known to be
defined: orgtbl-to-generic, org-combine-plists
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/langs/ob-asymptote.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/langs/ob-R.el
In org-babel-R-evaluate:
ob-R.el:174:70:Warning: `(extractor (el) (if (or broke (and (string-match
(regexp-quote org-babel-R-eoe-output) el) (setq broke t))) nil (if (=
(length el) 0) nil (if (string-match comint-prompt-regexp el)
(org-babel-trim (substring el (match-end 0))) el))))' is a malformed
function
ob-R.el:216:23:Warning: reference to free variable
`inferior-ess-primary-prompt'
ob-R.el:218:23:Warning: reference to free variable
`inferior-ess-secondary-prompt'
In end of data:
ob-R.el:256:1:Warning: the following functions are not known to be defined:
first, org-babel-ref-variables, org-babel-comint-in-buffer,
comint-send-input, org-babel-comint-wait-for-output, orgtbl-to-tsv,
org-babel-comint-buffer-livep, R, case, output, value,
org-babel-comint-with-output, session, inferior-ess-send-input, flet
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/langs/ob-R.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/babel/langs/ob-gnuplot.el
In org-babel-expand-body:gnuplot:
ob-gnuplot.el:66:61:Warning: `(add-to-body (text) (setq body (concat text "
" body)))' is a malformed function
In org-babel-execute:gnuplot:
ob-gnuplot.el:140:22:Warning: assignment to free variable `output'
ob-gnuplot.el:146:11:Warning: reference to free variable `output'
In org-babel-gnuplot-quote-tsv-field:
ob-gnuplot.el:189:21:Warning: reference to free variable
`org-table-number-regexp'
ob-gnuplot.el:190:23:Warning: reference to free variable `org-ts-regexp3'
In end of data:
ob-gnuplot.el:214:1:Warning: the following functions are not known to be
defined: org-babel-ref-variables, flet, add-to-body,
org-babel-comint-in-buffer, org-babel-comint-wait-for-output,
org-time-string-to-time, orgtbl-to-generic, org-combine-plists
Wrote /home/cwitte/source/elisp/org-mode/lisp/babel/langs/ob-gnuplot.elc
emacs -batch -q -no-site-file -eval "(setq load-path (cons (expand-file-name \"langs\" (expand-file-name \"babel\" (expand-file-name \"./lisp/\"))) (cons (expand-file-name \"babel\" (expand-file-name \"./lisp/\")) (cons (expand-file-name \"./lisp/\") (cons \"/usr/local/share/emacs/site-lisp\" load-path)))))" -f batch-byte-compile lisp/org-install.el
Wrote /home/cwitte/source/elisp/org-mode/lisp/org-install.elc
[-- Attachment #3: Type: text/plain, Size: 201 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
next prev parent reply other threads:[~2010-06-28 11:32 UTC|newest]
Thread overview: 65+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-23 21:09 [ANN] Org-babel integrated into Org-mode Eric Schulte
2010-06-23 23:23 ` Sebastian Rose
2010-06-23 23:41 ` Eric Schulte
2010-06-24 0:03 ` Bernt Hansen
2010-06-24 0:39 ` Eric Schulte
2010-06-24 5:12 ` Nathan Neff
2010-06-24 5:42 ` Eric Schulte
2010-06-24 7:31 ` Sébastien Vauban
2010-06-24 16:27 ` Eric Schulte
2010-06-25 8:28 ` Rainer M Krug
2010-06-25 15:37 ` Eric Schulte
2010-06-26 8:45 ` Štěpán Němec
2010-06-26 15:59 ` Eric Schulte
2010-06-26 16:30 ` Štěpán Němec
2010-06-26 17:27 ` Eric Schulte
2010-06-26 18:45 ` Stephan Schmitt
2010-06-26 19:42 ` Carsten Dominik
2010-06-26 19:51 ` Štěpán Němec
2010-06-28 7:55 ` Rainer M Krug
2010-06-28 11:53 ` Štěpán Němec
2010-06-28 12:16 ` Rainer M Krug
2010-06-28 12:54 ` Bernt Hansen
2010-06-28 13:18 ` Rainer M Krug
2010-06-28 13:25 ` Bernt Hansen
2010-06-28 13:36 ` Rainer M Krug
2010-06-28 16:03 ` Eric Schulte
2010-06-29 7:11 ` Rainer M Krug
2010-06-28 11:32 ` Christopher Witte [this message]
2010-06-28 16:59 ` Eric Schulte
2010-07-02 15:50 ` Christopher Witte
2010-06-29 18:23 ` Matt Lundin
2010-06-29 19:08 ` Nick Dokos
2010-06-29 21:01 ` Matt Lundin
2010-06-29 21:27 ` Matthew Lundin
2010-06-29 22:12 ` Nick Dokos
2010-06-29 22:03 ` Eric Schulte
2010-06-29 23:09 ` Eric Schulte
2010-06-29 23:11 ` Eric Schulte
2010-06-30 2:21 ` Nick Dokos
2010-06-30 5:37 ` Eric Schulte
2010-06-30 5:40 ` Eric Schulte
2010-06-30 12:13 ` Matthew Lundin
2010-06-30 9:27 ` Carsten Dominik
2010-06-30 9:59 ` Scot Becker
2010-06-30 12:53 ` Matthew Lundin
2010-06-30 13:24 ` Carsten Dominik
2010-06-30 16:25 ` Eric Schulte
2010-06-30 17:01 ` Dan Davison
2010-06-30 17:17 ` Eric Schulte
2010-06-30 23:08 ` Stephan Schmitt
2010-07-01 0:20 ` Matthew Lundin
2010-07-01 6:27 ` Carsten Dominik
2010-07-01 16:11 ` Nick Dokos
2010-07-01 20:24 ` Sébastien Vauban
2010-07-01 22:14 ` Nick Dokos
2010-06-30 19:41 ` Eric Schulte
2010-07-01 7:20 ` Carsten Dominik
2010-07-01 14:55 ` Eric Schulte
2010-07-01 20:39 ` Eric Schulte
2010-07-01 22:13 ` Christian Moe
2010-07-02 4:22 ` Carsten Dominik
2010-07-02 18:52 ` Eric Schulte
2010-07-02 8:38 ` Carsten Dominik
2010-06-30 19:01 ` Eric Schulte
2010-06-30 20:47 ` Matthew Lundin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=AANLkTil-QYxuXibS9MKqrnyCYtZegY4DJT6CiOTSzHh1@mail.gmail.com \
--to=chris@witte.net.au \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.