emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: andrew dasys <adasys@objectivity.ca>
To: Carsten Dominik <dominik@science.uva.nl>
Cc: emacs-orgmode@gnu.org
Subject: Re: Tables and Latex "Wrong-number-of-arguments" error
Date: Tue, 10 Mar 2009 09:12:20 -0400	[thread overview]
Message-ID: <8aca08a00903100612t36fc20f7s4c1288bdfdaeadab@mail.gmail.com> (raw)
In-Reply-To: <431894A1-EE74-4F12-BDB0-965C8DC6E4A2@uva.nl>


[-- Attachment #1.1: Type: text/plain, Size: 3307 bytes --]

Nick,
thank you for figuring this out.
Will upgrade as suggested.

Again thank you both for the great application.

Andrew

On Tue, Mar 10, 2009 at 1:36 AM, Carsten Dominik <dominik@science.uva.nl>wrote:

> Fix, thanks, in particular to Nick for sorting this out.
>
> Andrew, I strongly suggest you upgrade to Emacs 22.
>
> - Carsten
>
>
> On Mar 10, 2009, at 3:12 AM, Nick Dokos wrote:
>
>  [I mangled the previous response, so let me try again.]
>>
>> andrew dasys <adasys@objectivity.ca> wrote:
>>
>>  Nick,
>>> thank you for looking at this.
>>>
>>> I am running Emacs 21.4.1 Nothing bleeding edge here.
>>>
>>> The help for split-string looks reasonable  (compiled Lisp comes from
>>> "subr" ....) (complete output attached)
>>>
>>>  ....
>>
>>>
>>> split-string is a compiled Lisp function in `subr'.
>>> (split-string STRING &optional SEPARATORS)
>>>
>>> Splits STRING into substrings where there are matches for SEPARATORS.
>>> Each match for SEPARATORS is a splitting point.
>>> The substrings between the splitting points are made into a list
>>> which is returned.
>>> If SEPARATORS is absent, it defaults to "[ \f\t\n\r\v]+".
>>>
>>> If there is match for SEPARATORS at the beginning of STRING, we do not
>>> include a null substring for that.  Likewise, if there is a match
>>> at the end of STRING, we don't include a null substring for that.
>>>
>>> Modifies the match data; use `save-match-data' if necessary.
>>>
>>
>> I think that explains it: split-string takes one mandatory and two
>> optional arguments (separator regexp and an omit-nulls boolean) in
>> emacs-22/23; but only *one* optional argument in emacs-21 (the separator
>> arg). The org latex-exporting code calls it with two optional arguments
>> and that makes the emacs-21 implementation of split-string blow up.
>>
>> I just did an experiment: in my emacs-23, I called split-string
>> with one mandatory and *three* more arguments:
>>
>> (split-string "foo
>> bar
>> baz" "\n" t t)
>>
>> and I got output which looks very similar to what you are getting.
>>
>> So I think it's an incompatibility with emacs-21. Try the following
>> patch for now and let us know whether it resolves your problem:
>>
>>
>> diff --git a/lisp/org-export-latex.el b/lisp/org-export-latex.el
>> index 0c0c87f..e8ef6d5 100644
>> --- a/lisp/org-export-latex.el
>> +++ b/lisp/org-export-latex.el
>> @@ -1111,7 +1111,10 @@ The conversion is made depending of STRING-BEFORE
>> and STRING-AFTER."
>>                           (string-match "\\<align=\\([^ \t\n\r,]+\\)"
>> attr)
>>                           (match-string 1 attr))
>>                floatp (or caption label))
>> -         (setq lines (split-string raw-table "\n" t))
>> +         (setq lines
>> +                (if (< emacs-major-version 22)
>> +                    (split-string raw-table "\n")
>> +                  (split-string raw-table "\n" t)))
>>          (apply 'delete-region (list beg end))
>>          (when org-export-table-remove-special-lines
>>            (setq lines (org-table-clean-before-export lines
>> 'maybe-quoted)))
>>
>> Nick
>>
>>
>> _______________________________________________
>> 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
>>
>
>

[-- Attachment #1.2: Type: text/html, Size: 4647 bytes --]

[-- Attachment #2: 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

      reply	other threads:[~2009-03-10 13:12 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-04 18:48 Tables and Latex "Wrong-number-of-arguments" error andrew dasys
2009-03-05 14:28 ` Carsten Dominik
2009-03-09 20:15   ` andrew dasys
2009-03-09 22:22     ` Nick Dokos
2009-03-09 22:42       ` latex exporting strangeness [was: Re: Tables and Latex "Wrong-number-of-arguments" error] Nick Dokos
2009-03-09 23:38         ` andrew dasys
2009-03-10  2:01           ` Nick Dokos
2009-03-09 23:23       ` Tables and Latex "Wrong-number-of-arguments" error andrew dasys
2009-03-10  1:58         ` Nick Dokos
2009-03-10  2:12         ` Nick Dokos
2009-03-10  5:36           ` Carsten Dominik
2009-03-10 13:12             ` andrew dasys [this message]

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

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8aca08a00903100612t36fc20f7s4c1288bdfdaeadab@mail.gmail.com \
    --to=adasys@objectivity.ca \
    --cc=dominik@science.uva.nl \
    --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 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).