All of lore.kernel.org
 help / color / mirror / Atom feed
* [Linux-kernel-mentees] [PATCH RFC] checkpatch: fix TYPO_SPELLING check for words with apostrophe
@ 2020-11-26  9:47 Dwaipayan Ray
  2020-11-26  9:59 ` Lukas Bulwahn
  2020-11-26 10:05 ` Peilin Ye
  0 siblings, 2 replies; 5+ messages in thread
From: Dwaipayan Ray @ 2020-11-26  9:47 UTC (permalink / raw)
  To: lukas.bulwahn; +Cc: dwaipayanray1, linux-kernel-mentees, yepeilin.cs

checkpatch reports a false warning for some words containing an
apostrophe.

A false positive is "doesn't". Occurrence of the word causes
checkpatch to emit the following warning:

"WARNING: 'doesn'' may be misspelled - perhaps 'doesn't'?"

Check if any word character is present after the word boundary
in such cases. If present, it means a subpart of the word has
been matched and a warning should not be emitted.

Reported-by: Peilin Ye <yepeilin.cs@gmail.com>
Signed-off-by: Dwaipayan Ray <dwaipayanray1@gmail.com>
---
 scripts/checkpatch.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index d1ecb852f384..47b964984ce0 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -3106,7 +3106,7 @@ sub process {
 # Check for various typo / spelling mistakes
 		if (defined($misspellings) &&
 		    ($in_commit_log || $line =~ /^(?:\+|Subject:)/i)) {
-			while ($rawline =~ /(?:^|[^a-z@])($misspellings)(?:\b|$|[^a-z@])/gi) {
+			while ($rawline =~ /(?:^|[^a-z@])($misspellings)(?:\b(?![a-z@]+)|$|[^a-z@])/gi) {
 				my $typo = $1;
 				my $typo_fix = $spelling_fix{lc($typo)};
 				$typo_fix = ucfirst($typo_fix) if ($typo =~ /^[A-Z]/);
-- 
2.27.0

_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Linux-kernel-mentees] [PATCH RFC] checkpatch: fix TYPO_SPELLING check for words with apostrophe
  2020-11-26  9:47 [Linux-kernel-mentees] [PATCH RFC] checkpatch: fix TYPO_SPELLING check for words with apostrophe Dwaipayan Ray
@ 2020-11-26  9:59 ` Lukas Bulwahn
  2020-11-26 10:07   ` Dwaipayan Ray
  2020-11-26 10:05 ` Peilin Ye
  1 sibling, 1 reply; 5+ messages in thread
From: Lukas Bulwahn @ 2020-11-26  9:59 UTC (permalink / raw)
  To: Dwaipayan Ray; +Cc: linux-kernel-mentees, yepeilin.cs

On Thu, Nov 26, 2020 at 10:47 AM Dwaipayan Ray <dwaipayanray1@gmail.com> wrote:
>
> checkpatch reports a false warning for some words containing an
> apostrophe.
>
> A false positive is "doesn't". Occurrence of the word causes
> checkpatch to emit the following warning:
>
> "WARNING: 'doesn'' may be misspelled - perhaps 'doesn't'?"
>
> Check if any word character is present after the word boundary
> in such cases. If present, it means a subpart of the word has
> been matched and a warning should not be emitted.
>
> Reported-by: Peilin Ye <yepeilin.cs@gmail.com>
> Signed-off-by: Dwaipayan Ray <dwaipayanray1@gmail.com>

Looks good to me; I am wondering if it is useful to point out to
rewrite this to "does not" because commit messages are "formal
content", and not so much spoken language.

Lukas

> ---
>  scripts/checkpatch.pl | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index d1ecb852f384..47b964984ce0 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -3106,7 +3106,7 @@ sub process {
>  # Check for various typo / spelling mistakes
>                 if (defined($misspellings) &&
>                     ($in_commit_log || $line =~ /^(?:\+|Subject:)/i)) {
> -                       while ($rawline =~ /(?:^|[^a-z@])($misspellings)(?:\b|$|[^a-z@])/gi) {
> +                       while ($rawline =~ /(?:^|[^a-z@])($misspellings)(?:\b(?![a-z@]+)|$|[^a-z@])/gi) {
>                                 my $typo = $1;
>                                 my $typo_fix = $spelling_fix{lc($typo)};
>                                 $typo_fix = ucfirst($typo_fix) if ($typo =~ /^[A-Z]/);
> --
> 2.27.0
>
_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Linux-kernel-mentees] [PATCH RFC] checkpatch: fix TYPO_SPELLING check for words with apostrophe
  2020-11-26  9:47 [Linux-kernel-mentees] [PATCH RFC] checkpatch: fix TYPO_SPELLING check for words with apostrophe Dwaipayan Ray
  2020-11-26  9:59 ` Lukas Bulwahn
@ 2020-11-26 10:05 ` Peilin Ye
  2020-11-26 10:10   ` Dwaipayan Ray
  1 sibling, 1 reply; 5+ messages in thread
From: Peilin Ye @ 2020-11-26 10:05 UTC (permalink / raw)
  To: Dwaipayan Ray; +Cc: linux-kernel-mentees

On Thu, Nov 26, 2020 at 03:17:27PM +0530, Dwaipayan Ray wrote:
> checkpatch reports a false warning for some words containing an
> apostrophe.
> 
> A false positive is "doesn't". Occurrence of the word causes
> checkpatch to emit the following warning:
> 
> "WARNING: 'doesn'' may be misspelled - perhaps 'doesn't'?"
> 
> Check if any word character is present after the word boundary
> in such cases. If present, it means a subpart of the word has
> been matched and a warning should not be emitted.
> 
> Reported-by: Peilin Ye <yepeilin.cs@gmail.com>
> Signed-off-by: Dwaipayan Ray <dwaipayanray1@gmail.com>
> ---
>  scripts/checkpatch.pl | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Thanks for fixing it! Glad to see checkpatch is happy :)

FWIW, the patch is:
Tested-by: Peilin Ye <yepeilin.cs@gmail.com>

Thanks,
Peilin Ye

_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Linux-kernel-mentees] [PATCH RFC] checkpatch: fix TYPO_SPELLING check for words with apostrophe
  2020-11-26  9:59 ` Lukas Bulwahn
@ 2020-11-26 10:07   ` Dwaipayan Ray
  0 siblings, 0 replies; 5+ messages in thread
From: Dwaipayan Ray @ 2020-11-26 10:07 UTC (permalink / raw)
  To: Lukas Bulwahn; +Cc: linux-kernel-mentees, yepeilin.cs

On Thu, Nov 26, 2020 at 3:30 PM Lukas Bulwahn <lukas.bulwahn@gmail.com> wrote:
>
> On Thu, Nov 26, 2020 at 10:47 AM Dwaipayan Ray <dwaipayanray1@gmail.com> wrote:
> >
> > checkpatch reports a false warning for some words containing an
> > apostrophe.
> >
> > A false positive is "doesn't". Occurrence of the word causes
> > checkpatch to emit the following warning:
> >
> > "WARNING: 'doesn'' may be misspelled - perhaps 'doesn't'?"
> >
> > Check if any word character is present after the word boundary
> > in such cases. If present, it means a subpart of the word has
> > been matched and a warning should not be emitted.
> >
> > Reported-by: Peilin Ye <yepeilin.cs@gmail.com>
> > Signed-off-by: Dwaipayan Ray <dwaipayanray1@gmail.com>
>
> Looks good to me; I am wondering if it is useful to point out to
> rewrite this to "does not" because commit messages are "formal
> content", and not so much spoken language.
>

Yes, that's right. But I guess we could give the authors some freedom
to choose their language style. Personally for me this kind of WARNING
would be annoying. I think a CHECK might be possible, but don't know
if we would be over restricting authors then.

Thanks,
Dwaipayan.
_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Linux-kernel-mentees] [PATCH RFC] checkpatch: fix TYPO_SPELLING check for words with apostrophe
  2020-11-26 10:05 ` Peilin Ye
@ 2020-11-26 10:10   ` Dwaipayan Ray
  0 siblings, 0 replies; 5+ messages in thread
From: Dwaipayan Ray @ 2020-11-26 10:10 UTC (permalink / raw)
  To: Peilin Ye; +Cc: linux-kernel-mentees

On Thu, Nov 26, 2020 at 3:36 PM Peilin Ye <yepeilin.cs@gmail.com> wrote:
>
> On Thu, Nov 26, 2020 at 03:17:27PM +0530, Dwaipayan Ray wrote:
> > checkpatch reports a false warning for some words containing an
> > apostrophe.
> >
> > A false positive is "doesn't". Occurrence of the word causes
> > checkpatch to emit the following warning:
> >
> > "WARNING: 'doesn'' may be misspelled - perhaps 'doesn't'?"
> >
> > Check if any word character is present after the word boundary
> > in such cases. If present, it means a subpart of the word has
> > been matched and a warning should not be emitted.
> >
> > Reported-by: Peilin Ye <yepeilin.cs@gmail.com>
> > Signed-off-by: Dwaipayan Ray <dwaipayanray1@gmail.com>
> > ---
> >  scripts/checkpatch.pl | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
>
> Thanks for fixing it! Glad to see checkpatch is happy :)
>
> FWIW, the patch is:
> Tested-by: Peilin Ye <yepeilin.cs@gmail.com>
>
Thanks for testing it Peilin!
_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-11-26 10:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-26  9:47 [Linux-kernel-mentees] [PATCH RFC] checkpatch: fix TYPO_SPELLING check for words with apostrophe Dwaipayan Ray
2020-11-26  9:59 ` Lukas Bulwahn
2020-11-26 10:07   ` Dwaipayan Ray
2020-11-26 10:05 ` Peilin Ye
2020-11-26 10:10   ` Dwaipayan Ray

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.