Re: [BUG]: No customization data for org-property-value face

2023-07-15 Thread Mauro Aranda

Ihor Radchenko  writes:

> Mauro Aranda  writes:
>
>> After emacs -Q:
>> 1. (require 'org)
>> 2. M-x customize-face RET org-property-value
>>
>> A custom buffer shows up, but it says:
>> NO CUSTOMIZATION DATA; not intended to be customized.
>
> Thanks for reporting!

Thanks for your quick response :-)

> I am attaching tentative patch that makes `org-property-value' face
> inherit from default face. This will preserve the existing look as Emacs
> falls back to default face for "nil" faces.
>
> Or do we want to change this face to inherit from something like
> font-lock-string-face?
>





[BUG]: No customization data for org-property-value face

2023-07-15 Thread Mauro Aranda

After emacs -Q:
1. (require 'org)
2. M-x customize-face RET org-property-value

A custom buffer shows up, but it says:
NO CUSTOMIZATION DATA; not intended to be customized.

Could you please change this definition of org-property-value?
(defface org-property-value nil
  "Face used for the value of a property."
  :group 'org-faces)




Re: Bug: org-table-clean-line may not return only | and space [9.4.4 (release_9.4.4 @ /home/tbb/code/emacs/emacs/lisp/org/)] [9.4.4 (release_9.4.4 @ /home/tbb/code/emacs/emacs/lisp/org/)]

2022-10-06 Thread Mauro Aranda

Ihor Radchenko  writes:

> Ihor Radchenko  writes:
>
>> Mauro Aranda  writes:
>>
>>> 5. I expected to get a clean row:
>>> Here is a table:
>>> |   |   |
>>> | Data1 | Data2 |
>>>
>>> but I got:
>>> Here is a table:
>>> |   | Data2 |
>>> | Data1 | Data2 |
>>
>> Confirmed
>
> Fixed on main.
> 
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=f0b7dfb3a018891b2955986b0bdb5bf6fd5beb57


Thanks!



Bug: org-table-clean-line may not return only | and space [9.4.4 (release_9.4.4 @ /home/tbb/code/emacs/emacs/lisp/org/)] [9.4.4 (release_9.4.4 @ /home/tbb/code/emacs/emacs/lisp/org/)]

2021-05-23 Thread Mauro Aranda
Starting from emacs -Q:
1. C-x C-f test.org
2. Write something like the following:
Here is a table:
|Data1|Data2
3. Make sure to leave the last column without the "|"
4. C-o, with point at the table row.
5. I expected to get a clean row:
Here is a table:
|   |   |
| Data1 | Data2 |

but I got:
Here is a table:
|   | Data2 |
| Data1 | Data2 |

I realize this might be a corner-case, but I'm used to leave the last
column without "|", because TAB is smart enough to add it for me.  So
the "Data2" repetition becomes a little annoying.

If I put point at the row
| Data1 | Data2
the following:
(org-table-clean-line (buffer-substring (line-beginning-position) 
(line-end-position)))
evaluates to a string that has characters other than "|" and space, but
org-table-clean-line says it returns a string with only "|" and space.

I've tweaked the relevant regexp in org-table-clean-line to
"|\\([ \t]*?[^ \t\r\n|][^\r\n|]*\\)|?"
and that fixes it for me.

Best regards,
Mauro.


Emacs  : GNU Emacs 28.0.50 (build 5, i686-pc-linux-gnu, GTK+ Version 2.24.33, 
cairo version 1.16.0)
 of 2021-05-19
Package: Org mode version 9.4.4 (release_9.4.4 @ 
/home/tbb/code/emacs/emacs/lisp/org/)