Re: [O] Orgmode testsuite

2016-01-29 Thread Andrej Depperschmidt
Somehow I'm not able to locate the problematic part in my configuration
though it must be some interference of the recent changes of org-mode
with my configuration.

With point somewhere in the following table I get an error that gives
the backtrace pasted below. Do you have a hint what to look for looking
at that?

| col1   | col2   |
|+|
| http://www.url1.de | http://www.url2.de |


Debugger entered--Lisp error: (wrong-type-argument listp org-table)
  org-activate-plain-links(#)
  font-lock-fontify-keywords-region(1 # nil)
  font-lock-default-fontify-region(1 # nil)
  font-lock-fontify-region(1 #)
  org-table-align()
  org-table-next-field()
  funcall-interactively(org-table-next-field)
  call-interactively(org-table-next-field)
  org-cycle(nil)
  funcall-interactively(org-cycle nil)
  call-interactively(org-cycle nil nil)
  command-execute(org-cycle)



Nicolas Goaziou <m...@nicolasgoaziou.fr> writes:

> Hello,
>
> Andrej Depperschmidt <depper...@posteo.de> writes:
>
>> The minimal example are the two tables in an org-file. When I try to
>> move in those tables using TAB it is working okay in the first but not
>> in the second. Note however that it is working as expected with emacs -Q
>> and manually loading org.
>>
>> There seems to be something in my configuration that needs to be
>> adjusted to the last changes in org-mode. It stopped working a few days
>> ago without any changes of my config. Any idea what to look for?
>>
>>
>> | col1 | col2 |
>> |--+--|
>> | a11  | a12  |
>> | a21  | a22  |
>>
>>
>> | col1   | col2   |
>> |+|
>> | http://www.url1.de | http://www.url2.de |
>
>
> I cannot reproduce the problem. You may want to bisect for the commit
> responsible for your change and let us know.
>
>
> Regards,



Re: [O] Orgmode testsuite

2016-01-28 Thread Andrej Depperschmidt

The minimal example are the two tables in an org-file. When I try to
move in those tables using TAB it is working okay in the first but not
in the second. Note however that it is working as expected with emacs -Q
and manually loading org.

There seems to be something in my configuration that needs to be
adjusted to the last changes in org-mode. It stopped working a few days
ago without any changes of my config. Any idea what to look for?


| col1 | col2 |
|--+--|
| a11  | a12  |
| a21  | a22  |


| col1   | col2   |
|+|
| http://www.url1.de | http://www.url2.de |



Nicolas Goaziou <m...@nicolasgoaziou.fr> writes:

> Hello,
>
> Andrej Depperschmidt <depper...@posteo.de> writes:
>
>> The following error occurs
>>
>> font-lock-fontify-keywords-region: Wrong type argument: listp,
>> org-table
>
> It looks like the same problem.
>
>> I checked with the latest version of org from git.
>
> Odd. Please make sure you are really using development version. If the
> problem persists, could you provide an ECM?
>
> Regards,



Re: [O] Orgmode testsuite

2016-01-28 Thread Andrej Depperschmidt
Hello,

I'm not sure if it is related...
In tables containing an url with http://something I cannot move as usual using 
TAB.
(see also
http://emacs.stackexchange.com/questions/19874/external-http-link-not-recognized-as-link
 )

The following error occurs

font-lock-fontify-keywords-region: Wrong type argument: listp, org-table

I checked with the latest version of org from git.

Best,
Andrej


Nicolas Goaziou  writes:

> Hello,
>
> Christian Kruse  writes:
>
>> Do you need more information on that? I hit the error, too.
>
> It is fixed already.
>
> Unfortunately, Org ELPA updates every Monday AFAICT. So, unless someone
> can refresh the Org package there, we'll have to live with it until next
> week.
>
> Regards,



Re: [O] add joint work with

2013-06-09 Thread Andrej Depperschmidt
Eric S Fraga writes:



 #+latex_header: \author[speaker]{speaker \\ joint work with second author and 
 third author}
 #+latex_header: \renewcommand{\author}[1]{}


Thank you very much! The second line is the one that I was missing.

Cheers,
Andrej



[O] add joint work with

2013-06-08 Thread Andrej Depperschmidt
Hello emacs-orgmode list!

I am trying to prepare a talk using ox-beamer and am missing a function
that I am used to.

In beamer latex one can for example write

\author[speaker]{speaker \\ joint work with second author and third author}

Then I get my name and that of my coauthors on the titlepage. My name
can then also appear (depending on the beamer theme) in the footnote on
each slide.

Is it possible to achieve this without exporting to latex and adjusting
the corresponding entries there?

I didn't find an answer on the list. Also in ox-beamer.el the
corresponding section contains only entries with \author{...}, i.e.
without square brackets. Would be nice to have an entry

#+COAUTHOR: second author and third author

that is then put in \author[second author and third author]{...}

Or is there already something similar that I didn't find?

Best regards,
Andrej