-
Notifications
You must be signed in to change notification settings - Fork 20
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
Comment terminates on special character #27
Comments
I am currently working on it. I changed the regex from list of acceptable characters to a simple Will have to test if it fails somewhere. |
Sounds good |
May i work on this issue I'm a newbie nd want to explore how open source community works nd want to implement my learning skiils |
@GMishx sir is thier is anything where i start my contribution in these project or organisation for ne |
sir, i want to contribute in fossology organization can u guide me
little bit.
…On Mon, 28 Dec 2020 at 13:32, Gaurav Mishra ***@***.***> wrote:
Thanks for your interest @codeakki <https://github.com/codeakki> but #28
<#28> already solves it.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#27 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ASHGLGQVC6LGGHALENPDR2TSXA3RTANCNFSM4VAZ6A3A>
.
|
Hi @codeakki, You can start with these: [ [Open issues in Atarashi] Currently |
Thanks for the inputs @hastagAB . I have just created another issue fossology/atarashi#77 and would like to add it to your list. |
Description
Nirjas terminates the comment on occurrence of any special character out of !$%&{}~`"'| for all languages
How to Test
Create a c file and add a single line comment which contains any special character out of !$%&{}~`"'|
How to Resolve
Changing regex from
(\/\/\s*[\w #\.()@+-_*\d]*)
to(\/\/\s*[\w #\.()@!-~*\d]*)
The text was updated successfully, but these errors were encountered: