Re: org-enable-table-editor is removed since 9.1

2019-11-26 Thread Nick Dokos
Tomasz Piotrowski  writes:

> If I try to edit a table in org-mode, e.g., add a row to it, I get a
> message
>
> "eval: Symbol’s value as variable is void: org-enable-table-editor".
>
> This is in line with changes made in version 9.1:
> https://orgmode.org/Changes_old.html#org8981857
>
> This makes the manual for editing tables:
> https://orgmode.org/manual/Built_002din-table-editor.html
>
> unusable for me. Indeed, I get the same message:
>
> "eval: Symbol’s value as variable is void: org-enable-table-editor"
>
> when I tried to submit the bug using:
>
> M-x org-submit-bug-report 
>
> I am on version 9.2.6, but I think all versions since 9.1 are affected.
>

Turn on debug-on-error and try again - a stack trace should be produced which 
should help
to identify the place where the symbol is used:

   M-x toggle-debug-on-error RET
   M-x org-submit-bug-report RET

You either have a mixed installation (i.e. you are using a mixture of 9.2.6
and a 9.1-or-earlier version), or you are using this symbol in one of
your initialization files and/or in your customizations.

-- 
Nick

"There are only two hard problems in computer science: cache
invalidation, naming things, and off-by-one errors." -Martin Fowler




Re: org-enable-table-editor is removed since 9.1

2019-11-26 Thread Tomasz Piotrowski
Nicolas,

I will check the libraries, thank you.

Tomasz


Nicolas Goaziou writes:

> Tomasz Piotrowski  writes:
>
>> Many thanks for the reply. Please find the backtrace attached. This
>> variable org-enable-table-editor has been removed in org v.9.1., which
>> is stated explicitly in the release notes for v.9.1:
>> https://orgmode.org/Changes_old.html
>>
>> I use v.9.2.6. The error appears each time I try to edit an org-mode
>> table, for example, inserting row using M-RET which calls
>>
>> M-RET (translated from ) runs the command org-meta-return
>> (found in org-mode-map), which is an interactive Lisp closure in
>> ‘org.el’.
>
> [...]
>
>>   (eq org-enable-table-editor 'optimized)
>>   eval((eq org-enable-table-editor 'optimized))
>>   custom-initialize-reset(orgtbl-optimized (eq org-enable-table-editor 
>> 'optimized))
>>   custom-declare-variable(orgtbl-optimized (eq org-enable-table-editor 
>> 'optimized) "Non-nil means use the optimized table editor versi..." :group 
>> org-table :type boolean)
>
> This looks like a Frankenorg, there is no such code in Org 9.2.6. You
> may want to double-check your Org installation, you are probably mixing
> old and new libraries.




Re: org-enable-table-editor is removed since 9.1

2019-11-26 Thread Nicolas Goaziou
Tomasz Piotrowski  writes:

> Many thanks for the reply. Please find the backtrace attached. This
> variable org-enable-table-editor has been removed in org v.9.1., which
> is stated explicitly in the release notes for v.9.1:
> https://orgmode.org/Changes_old.html
>
> I use v.9.2.6. The error appears each time I try to edit an org-mode
> table, for example, inserting row using M-RET which calls
>
> M-RET (translated from ) runs the command org-meta-return
> (found in org-mode-map), which is an interactive Lisp closure in
> ‘org.el’.

[...]

>   (eq org-enable-table-editor 'optimized)
>   eval((eq org-enable-table-editor 'optimized))
>   custom-initialize-reset(orgtbl-optimized (eq org-enable-table-editor 
> 'optimized))
>   custom-declare-variable(orgtbl-optimized (eq org-enable-table-editor 
> 'optimized) "Non-nil means use the optimized table editor versi..." :group 
> org-table :type boolean)

This looks like a Frankenorg, there is no such code in Org 9.2.6. You
may want to double-check your Org installation, you are probably mixing
old and new libraries.



Re: org-enable-table-editor is removed since 9.1

2019-11-26 Thread Tomasz Piotrowski
Hello,

Many thanks for the reply. Please find the backtrace attached. This
variable org-enable-table-editor has been removed in org v.9.1., which
is stated explicitly in the release notes for v.9.1:
https://orgmode.org/Changes_old.html

I use v.9.2.6. The error appears each time I try to edit an org-mode
table, for example, inserting row using M-RET which calls

M-RET (translated from ) runs the command org-meta-return
(found in org-mode-map), which is an interactive Lisp closure in
‘org.el’.

It is bound to M-RET.

(org-meta-return  ARG)

Insert a new heading or wrap a region in a table.
Calls ‘org-insert-heading’, ‘org-insert-item’ or
‘org-table-wrap-region’, depending on context.  When called with
an argument, unconditionally call ‘org-insert-heading’.




Nicolas Goaziou writes:

> Hello,
>
> Tomasz Piotrowski  writes:
>
>> If I try to edit a table in org-mode, e.g., add a row to it, I get a
>> message
>>
>> "eval: Symbol’s value as variable is void: org-enable-table-editor".
>
> You should check, and possibly send, the full backtrace. Org code base
> does not contain any reference to this variable. This may be related to
> your configuration.
>
> Regards,



backtrace
Description: Binary data


Re: org-enable-table-editor is removed since 9.1

2019-11-26 Thread Nicolas Goaziou
Hello,

Tomasz Piotrowski  writes:

> If I try to edit a table in org-mode, e.g., add a row to it, I get a
> message
>
> "eval: Symbol’s value as variable is void: org-enable-table-editor".

You should check, and possibly send, the full backtrace. Org code base
does not contain any reference to this variable. This may be related to
your configuration.

Regards,

-- 
Nicolas Goaziou



org-enable-table-editor is removed since 9.1

2019-11-24 Thread Tomasz Piotrowski
Hi,

If I try to edit a table in org-mode, e.g., add a row to it, I get a
message

"eval: Symbol’s value as variable is void: org-enable-table-editor".

This is in line with changes made in version 9.1:
https://orgmode.org/Changes_old.html#org8981857

This makes the manual for editing tables:
https://orgmode.org/manual/Built_002din-table-editor.html

unusable for me. Indeed, I get the same message:

"eval: Symbol’s value as variable is void: org-enable-table-editor"

when I tried to submit the bug using:

M-x org-submit-bug-report 

I am on version 9.2.6, but I think all versions since 9.1 are affected.

How to edit tables in org-mode?

Tomasz Piotrowski