Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed the Bulgarian module to avoid using \d and \D #48

Merged
merged 1 commit into from
Dec 29, 2018

Conversation

mbalabanov75
Copy link
Contributor

The Bulgarian module did not work in LibreOffice. When I investigated, it turned out that \d and \D are apparently not supported by the regex engine used in LO under Windows, so I expanded them to [0-9] and [^0-9] respectively. The module now appears to work correctly (tested both in Calc and in Writer).

@laszlonemeth laszlonemeth merged commit 24441c8 into Numbertext:master Dec 29, 2018
@laszlonemeth
Copy link
Contributor

Thanks for your bug report and patch. Likely the solution will be replacing \d, \D with their portable equivalent [0-9], [^0-9]...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants