* [PATCH] CodingStyle: Add information about trailing whitespace. @ 2007-06-27 17:59 Josh Triplett 2007-06-27 18:05 ` Chris Shoemaker 2007-06-27 19:31 ` Andrew Morton 0 siblings, 2 replies; 29+ messages in thread From: Josh Triplett @ 2007-06-27 17:59 UTC (permalink / raw) To: linux-kernel; +Cc: akpm, josh Signed-off-by: Josh Triplett <josh@kernel.org> --- Documentation/CodingStyle | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/Documentation/CodingStyle b/Documentation/CodingStyle index b49b92e..00bffa7 100644 --- a/Documentation/CodingStyle +++ b/Documentation/CodingStyle @@ -218,6 +218,18 @@ no space after the prefix increment & decrement unary operators: and no space around the '.' and "->" structure member operators. +Do not leave trailing whitespace at the ends of lines. Some editors with +"smart" indentation will insert whitespace at the beginning of new lines as +appropriate, so you can start typing the next line of code right away. +However, some such editors do not remove the whitespace if you end up not +putting a line of code there, such as if you leave a blank line. As a result, +you end up with lines containing trailing whitespace. + +Git will warn you about patches that introduce trailing whitespace, and can +optionally strip the trailing whitespace for you; however, if applying a series +of patches, this may make later patches in the series fail by changing their +context lines. + Chapter 4: Naming -- 1.5.2.1 ^ permalink raw reply related [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-27 17:59 [PATCH] CodingStyle: Add information about trailing whitespace Josh Triplett @ 2007-06-27 18:05 ` Chris Shoemaker 2007-06-27 18:17 ` Josh Triplett 2007-06-27 22:18 ` Jan Engelhardt 2007-06-27 19:31 ` Andrew Morton 1 sibling, 2 replies; 29+ messages in thread From: Chris Shoemaker @ 2007-06-27 18:05 UTC (permalink / raw) To: Josh Triplett; +Cc: linux-kernel, akpm, josh On Wed, Jun 27, 2007 at 10:59:20AM -0700, Josh Triplett wrote: > +Do not leave trailing whitespace at the ends of lines. Some editors with > +"smart" indentation will insert whitespace at the beginning of new lines as > +appropriate, so you can start typing the next line of code right away. > +However, some such editors do not remove the whitespace if you end up not > +putting a line of code there, such as if you leave a blank line. As a result, > +you end up with lines containing trailing whitespace. > + > +Git will warn you about patches that introduce trailing whitespace, and can > +optionally strip the trailing whitespace for you; however, if applying a series > +of patches, this may make later patches in the series fail by changing their > +context lines. What I'd really like to see is, _why_ is trailing whitespace considered harmful? Something about MUAs not preserving it or something? -chris ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-27 18:05 ` Chris Shoemaker @ 2007-06-27 18:17 ` Josh Triplett 2007-06-27 19:32 ` Chris Shoemaker 2007-06-27 22:18 ` Jan Engelhardt 1 sibling, 1 reply; 29+ messages in thread From: Josh Triplett @ 2007-06-27 18:17 UTC (permalink / raw) To: Chris Shoemaker; +Cc: linux-kernel, akpm, josh On Wed, 2007-06-27 at 14:05 -0400, Chris Shoemaker wrote: > On Wed, Jun 27, 2007 at 10:59:20AM -0700, Josh Triplett wrote: > > +Do not leave trailing whitespace at the ends of lines. Some editors with > > +"smart" indentation will insert whitespace at the beginning of new lines as > > +appropriate, so you can start typing the next line of code right away. > > +However, some such editors do not remove the whitespace if you end up not > > +putting a line of code there, such as if you leave a blank line. As a result, > > +you end up with lines containing trailing whitespace. > > + > > +Git will warn you about patches that introduce trailing whitespace, and can > > +optionally strip the trailing whitespace for you; however, if applying a series > > +of patches, this may make later patches in the series fail by changing their > > +context lines. > > What I'd really like to see is, _why_ is trailing whitespace > considered harmful? Something about MUAs not preserving it or > something? When the trailing whitespace later disappears, that change shows up in diffs, and since you can't see the whitespace difference, it just looks like a mysterious change until you check it more closely. It also introduces gratuitous conflicts and other such annoyances. - Josh Triplett ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-27 18:17 ` Josh Triplett @ 2007-06-27 19:32 ` Chris Shoemaker 0 siblings, 0 replies; 29+ messages in thread From: Chris Shoemaker @ 2007-06-27 19:32 UTC (permalink / raw) To: Josh Triplett; +Cc: linux-kernel, akpm, josh On Wed, Jun 27, 2007 at 11:17:09AM -0700, Josh Triplett wrote: > On Wed, 2007-06-27 at 14:05 -0400, Chris Shoemaker wrote: > > On Wed, Jun 27, 2007 at 10:59:20AM -0700, Josh Triplett wrote: > > > +Do not leave trailing whitespace at the ends of lines. Some editors with > > > +"smart" indentation will insert whitespace at the beginning of new lines as > > > +appropriate, so you can start typing the next line of code right away. > > > +However, some such editors do not remove the whitespace if you end up not > > > +putting a line of code there, such as if you leave a blank line. As a result, > > > +you end up with lines containing trailing whitespace. > > > + > > > +Git will warn you about patches that introduce trailing whitespace, and can > > > +optionally strip the trailing whitespace for you; however, if applying a series > > > +of patches, this may make later patches in the series fail by changing their > > > +context lines. > > > > What I'd really like to see is, _why_ is trailing whitespace > > considered harmful? Something about MUAs not preserving it or > > something? > > When the trailing whitespace later disappears, that change shows up in > diffs, and since you can't see the whitespace difference, it just looks > like a mysterious change until you check it more closely. Okay, but it seems like this is more of an argument that diffs containing lines that change only the trailing whitespace are considered harmful. I buy that, but I don't see why it follows that new code shouldn't have any trailing whitespace at all. > It also introduces gratuitous conflicts and other such annoyances. I don't get this part. Only changes can create conflicts. Are there some editors (or MUAs) that change trailing whitespace without being told to? (And I'm not even talking about your warning about conflicts created by applying stripped versions of early patches in a series - that's just self-inflicted pain.) -chris ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-27 18:05 ` Chris Shoemaker 2007-06-27 18:17 ` Josh Triplett @ 2007-06-27 22:18 ` Jan Engelhardt 2007-06-28 6:00 ` dave young 1 sibling, 1 reply; 29+ messages in thread From: Jan Engelhardt @ 2007-06-27 22:18 UTC (permalink / raw) To: Chris Shoemaker; +Cc: Josh Triplett, linux-kernel, akpm, josh On Jun 27 2007 14:05, Chris Shoemaker wrote: > >What I'd really like to see is, _why_ is trailing whitespace >considered harmful? Consumes bytes you'll never see :) >Something about MUAs not preserving it or something? Well, there is format=flowed. text/plain mails with a trailing blank at the end of line indicates the paragraph continues -- as a curtesy for mail readers with non-fixed-font to display the paragraph coherently rather than breaking it at 72/80 columns. Jan -- ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-27 22:18 ` Jan Engelhardt @ 2007-06-28 6:00 ` dave young 2007-06-28 6:08 ` Josh Triplett 0 siblings, 1 reply; 29+ messages in thread From: dave young @ 2007-06-28 6:00 UTC (permalink / raw) To: Jan Engelhardt; +Cc: Chris Shoemaker, Josh Triplett, linux-kernel, akpm, josh 2007/6/27, Jan Engelhardt <jengelh@computergmbh.de>: > > On Jun 27 2007 14:05, Chris Shoemaker wrote: > > > >What I'd really like to see is, _why_ is trailing whitespace > >considered harmful? > > Consumes bytes you'll never see :) > > >Something about MUAs not preserving it or something? > > Well, there is format=flowed. text/plain mails with a trailing blank at the end > of line indicates the paragraph continues -- as a curtesy for mail readers with > non-fixed-font to display the paragraph coherently rather than breaking it at > 72/80 columns. > > > Jan > -- > - > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > There's more potential to cause lines end with whitespace. How about remove the "Some editors with ..." like this : +Do not leave trailing whitespace at the ends of lines. + +Git will warn you about patches that introduce trailing whitespace, and can +optionally strip the trailing whitespace for you; however, if applying a series +of patches, this may make later patches in the series fail by changing their +context lines. + ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-28 6:00 ` dave young @ 2007-06-28 6:08 ` Josh Triplett 2007-06-28 6:29 ` dave young 0 siblings, 1 reply; 29+ messages in thread From: Josh Triplett @ 2007-06-28 6:08 UTC (permalink / raw) To: dave young Cc: Jan Engelhardt, Chris Shoemaker, Josh Triplett, linux-kernel, akpm dave young wrote: > 2007/6/27, Jan Engelhardt <jengelh@computergmbh.de>: >> On Jun 27 2007 14:05, Chris Shoemaker wrote: >>> What I'd really like to see is, _why_ is trailing whitespace >>> considered harmful? >> Consumes bytes you'll never see :) >> >>> Something about MUAs not preserving it or something? >> Well, there is format=flowed. text/plain mails with a trailing blank at the end >> of line indicates the paragraph continues -- as a curtesy for mail readers with >> non-fixed-font to display the paragraph coherently rather than breaking it at >> 72/80 columns. >> >> >> Jan >> -- >> - >> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in >> the body of a message to majordomo@vger.kernel.org >> More majordomo info at http://vger.kernel.org/majordomo-info.html >> Please read the FAQ at http://www.tux.org/lkml/ >> > > There's more potential to cause lines end with whitespace. How about > remove the "Some editors with ..." like this : > > +Do not leave trailing whitespace at the ends of lines. > + [...] Many other causes for trailing whitespace exist. However, I wanted to mention one of the common causes. If you have other common causes in mind, and even better if you have ways to avoid them, we should add those too. It might make sense to put a paragraph break after the first sentence, though, and split the information about editors into its own paragraph, adding more paragraphs if people suggest other possibilities. - Josh Triplett ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-28 6:08 ` Josh Triplett @ 2007-06-28 6:29 ` dave young 2007-06-28 6:52 ` Jan Engelhardt 0 siblings, 1 reply; 29+ messages in thread From: dave young @ 2007-06-28 6:29 UTC (permalink / raw) To: Josh Triplett Cc: Jan Engelhardt, Chris Shoemaker, Josh Triplett, linux-kernel, akpm >2007/6/28, Josh Triplett <josh@kernel.org>: > dave young wrote: > > 2007/6/27, Jan Engelhardt <jengelh@computergmbh.de>: > >> On Jun 27 2007 14:05, Chris Shoemaker wrote: > >>> What I'd really like to see is, _why_ is trailing whitespace > >>> considered harmful? > >> Consumes bytes you'll never see :) > >> > >>> Something about MUAs not preserving it or something? > >> Well, there is format=flowed. text/plain mails with a trailing blank at the end > >> of line indicates the paragraph continues -- as a curtesy for mail readers with > >> non-fixed-font to display the paragraph coherently rather than breaking it at > >> 72/80 columns. > >> > >> > >> Jan > >> -- > >> - > >> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > >> the body of a message to majordomo@vger.kernel.org > >> More majordomo info at http://vger.kernel.org/majordomo-info.html > >> Please read the FAQ at http://www.tux.org/lkml/ > >> > > > > There's more potential to cause lines end with whitespace. How about > > remove the "Some editors with ..." like this : > > > > +Do not leave trailing whitespace at the ends of lines. > > + > [...] > > Many other causes for trailing whitespace exist. However, I wanted to mention > one of the common causes. If you have other common causes in mind, and even > better if you have ways to avoid them, we should add those too. > > It might make sense to put a paragraph break after the first sentence, though, > and split the information about editors into its own paragraph, adding more > paragraphs if people suggest other possibilities. > IMHO, another cause of trailing whitespace is human error, for example long lines breaking will easy to cause the first line with one traling whitespace (original space between the last two words). Regards dave ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-28 6:29 ` dave young @ 2007-06-28 6:52 ` Jan Engelhardt 2007-06-28 6:58 ` Josh Triplett 0 siblings, 1 reply; 29+ messages in thread From: Jan Engelhardt @ 2007-06-28 6:52 UTC (permalink / raw) To: dave young Cc: Josh Triplett, Chris Shoemaker, Josh Triplett, linux-kernel, akpm On Jun 28 2007 06:29, dave young wrote: > > IMHO, another cause of trailing whitespace is human error, for > example long lines breaking will easy to cause the first line with one > traling whitespace (original space between the last two words). Most common errors (to me) are: - hit return+tab too quickly that it interchanges, hence producing the unwanted \t\n - hit return+return to start a new paragraph of code; the intermediate line remains indented if autoindent is on. Jan -- ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-28 6:52 ` Jan Engelhardt @ 2007-06-28 6:58 ` Josh Triplett 2007-06-28 7:08 ` Li Yang-r58472 2007-06-29 2:03 ` [PATCH] CodingStyle: Add information about trailing whitespace Andy Isaacson 0 siblings, 2 replies; 29+ messages in thread From: Josh Triplett @ 2007-06-28 6:58 UTC (permalink / raw) To: Jan Engelhardt Cc: dave young, Chris Shoemaker, Josh Triplett, linux-kernel, akpm Jan Engelhardt wrote: > On Jun 28 2007 06:29, dave young wrote: >> IMHO, another cause of trailing whitespace is human error, for >> example long lines breaking will easy to cause the first line with one >> traling whitespace (original space between the last two words). > > Most common errors (to me) are: > > - hit return+tab too quickly that it interchanges, hence producing > the unwanted \t\n > - hit return+return to start a new paragraph of code; > the intermediate line remains indented if autoindent is on. Interestingly, emacs gets that case right: when you hit enter it places the cursor at the properly indented insertion point, but if you leave the line without typing anything it does not leave the indentation. I thought I remembered vim doing the same thing, but I just tested and it appears not. It seems to avoid leaving subsequent lines indented, but not the first one. - Josh Triplett ^ permalink raw reply [flat|nested] 29+ messages in thread
* RE: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-28 6:58 ` Josh Triplett @ 2007-06-28 7:08 ` Li Yang-r58472 2007-06-28 7:10 ` Dave Young 2007-06-29 2:03 ` [PATCH] CodingStyle: Add information about trailing whitespace Andy Isaacson 1 sibling, 1 reply; 29+ messages in thread From: Li Yang-r58472 @ 2007-06-28 7:08 UTC (permalink / raw) To: Josh Triplett, Jan Engelhardt Cc: dave young, Chris Shoemaker, Josh Triplett, linux-kernel, akpm > -----Original Message----- > From: linux-kernel-owner@vger.kernel.org > [mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Josh Triplett > Sent: Thursday, June 28, 2007 2:59 PM > To: Jan Engelhardt > Cc: dave young; Chris Shoemaker; Josh Triplett; linux-kernel@vger.kernel.org; > akpm@linux-foundation.org > Subject: Re: [PATCH] CodingStyle: Add information about trailing whitespace. > > Jan Engelhardt wrote: > > On Jun 28 2007 06:29, dave young wrote: > >> IMHO, another cause of trailing whitespace is human error, for > >> example long lines breaking will easy to cause the first line with one > >> traling whitespace (original space between the last two words). > > > > Most common errors (to me) are: > > > > - hit return+tab too quickly that it interchanges, hence producing > > the unwanted \t\n > > - hit return+return to start a new paragraph of code; > > the intermediate line remains indented if autoindent is on. > > Interestingly, emacs gets that case right: when you hit enter it places the > cursor at the properly indented insertion point, but if you leave the line > without typing anything it does not leave the indentation. I thought I > remembered vim doing the same thing, but I just tested and it appears not. It > seems to avoid leaving subsequent lines indented, but not the first one. No, vim works just fine here without leaving any indentation. Maybe the version of vim or the options matter. - Leo ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-28 7:08 ` Li Yang-r58472 @ 2007-06-28 7:10 ` Dave Young 2007-06-28 7:20 ` Dave Young 0 siblings, 1 reply; 29+ messages in thread From: Dave Young @ 2007-06-28 7:10 UTC (permalink / raw) To: Li Yang-r58472 Cc: Josh Triplett, Jan Engelhardt, Chris Shoemaker, Josh Triplett, linux-kernel, akpm >On 6/28/07, Li Yang-r58472 <LeoLi@freescale.com> wrote: > > -----Original Message----- > > From: linux-kernel-owner@vger.kernel.org > > [mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Josh Triplett > > Sent: Thursday, June 28, 2007 2:59 PM > > To: Jan Engelhardt > > Cc: dave young; Chris Shoemaker; Josh Triplett; > linux-kernel@vger.kernel.org; > > akpm@linux-foundation.org > > Subject: Re: [PATCH] CodingStyle: Add information about trailing > whitespace. > > > > Jan Engelhardt wrote: > > > On Jun 28 2007 06:29, dave young wrote: > > >> IMHO, another cause of trailing whitespace is human error, for > > >> example long lines breaking will easy to cause the first line with > one > > >> traling whitespace (original space between the last two words). > > > > > > Most common errors (to me) are: > > > > > > - hit return+tab too quickly that it interchanges, hence producing > > > the unwanted \t\n > > > - hit return+return to start a new paragraph of code; > > > the intermediate line remains indented if autoindent is on. > > > > Interestingly, emacs gets that case right: when you hit enter it > places the > > cursor at the properly indented insertion point, but if you leave the > line > > without typing anything it does not leave the indentation. I thought > I > > remembered vim doing the same thing, but I just tested and it appears > not. It > > seems to avoid leaving subsequent lines indented, but not the first > one. > > No, vim works just fine here without leaving any indentation. Maybe the > version of vim or the options matter. > Yes, vim autoindent doesn't leave tabs in blank line for me. ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-28 7:10 ` Dave Young @ 2007-06-28 7:20 ` Dave Young 2007-06-29 3:11 ` [OT] Vim highlighting for trailing spaces Kyle Moffett 0 siblings, 1 reply; 29+ messages in thread From: Dave Young @ 2007-06-28 7:20 UTC (permalink / raw) To: Li Yang-r58472 Cc: Josh Triplett, Jan Engelhardt, Chris Shoemaker, Josh Triplett, linux-kernel, akpm >On 6/28/07, Dave Young <hidave.darkstar@gmail.com> wrote: > >On 6/28/07, Li Yang-r58472 <LeoLi@freescale.com> wrote: > > > -----Original Message----- > > > From: linux-kernel-owner@vger.kernel.org > > > [mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Josh Triplett > > > Sent: Thursday, June 28, 2007 2:59 PM > > > To: Jan Engelhardt > > > Cc: dave young; Chris Shoemaker; Josh Triplett; > > linux-kernel@vger.kernel.org; > > > akpm@linux-foundation.org > > > Subject: Re: [PATCH] CodingStyle: Add information about trailing > > whitespace. > > > > > > Jan Engelhardt wrote: > > > > On Jun 28 2007 06:29, dave young wrote: > > > >> IMHO, another cause of trailing whitespace is human error, for > > > >> example long lines breaking will easy to cause the first line with > > one > > > >> traling whitespace (original space between the last two words). > > > > > > > > Most common errors (to me) are: > > > > > > > > - hit return+tab too quickly that it interchanges, hence producing > > > > the unwanted \t\n > > > > - hit return+return to start a new paragraph of code; > > > > the intermediate line remains indented if autoindent is on. > > > > > > Interestingly, emacs gets that case right: when you hit enter it > > places the > > > cursor at the properly indented insertion point, but if you leave the > > line > > > without typing anything it does not leave the indentation. I thought > > I > > > remembered vim doing the same thing, but I just tested and it appears > > not. It > > > seems to avoid leaving subsequent lines indented, but not the first > > one. > > > > No, vim works just fine here without leaving any indentation. Maybe the > > version of vim or the options matter. > > > Yes, vim autoindent doesn't leave tabs in blank line for me. > And for vim trailing space, there's a tip in vim.org: http://www.vim.org/tips/tip.php?tip_id=878 ^ permalink raw reply [flat|nested] 29+ messages in thread
* [OT] Vim highlighting for trailing spaces 2007-06-28 7:20 ` Dave Young @ 2007-06-29 3:11 ` Kyle Moffett 2007-06-29 7:39 ` Jan Engelhardt 2007-06-29 12:40 ` Michael Tokarev 0 siblings, 2 replies; 29+ messages in thread From: Kyle Moffett @ 2007-06-29 3:11 UTC (permalink / raw) To: Dave Young Cc: Li Yang-r58472, Josh Triplett, Jan Engelhardt, Chris Shoemaker, Josh Triplett, linux-kernel, akpm On Jun 28, 2007, at 03:20:24, Dave Young wrote: > And for vim trailing space, there's a tip in vim.org: > http://www.vim.org/tips/tip.php?tip_id=878 I actually prefer this (in .vimrc): " Show trailing whitespace and spaces before tabs hi link localWhitespaceError Error au Syntax * syn match localWhitespaceError /\(\zs\%#\|\s\)\+$/ display au Syntax * syn match localWhitespaceError / \+\ze\t/ display It always displays trailing whitespace and spaces-before tabs... except if your cursor is at the end of the whitespace. The updating is occasionally a bit laggy (EG: Put spaces on a line and then move the cursor off it without pressing <ENTER>), but when you hit Ctrl-L, enter, or edit an adjacent line then it updates. The script mentioned there *is* good for removing said whitespace, though Cheers, Kyle Moffett ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [OT] Vim highlighting for trailing spaces 2007-06-29 3:11 ` [OT] Vim highlighting for trailing spaces Kyle Moffett @ 2007-06-29 7:39 ` Jan Engelhardt 2007-06-29 7:53 ` Josh Triplett 2007-06-29 12:40 ` Michael Tokarev 1 sibling, 1 reply; 29+ messages in thread From: Jan Engelhardt @ 2007-06-29 7:39 UTC (permalink / raw) To: Kyle Moffett Cc: Dave Young, Li Yang-r58472, Josh Triplett, Chris Shoemaker, Josh Triplett, linux-kernel, akpm On Jun 28 2007 23:11, Kyle Moffett wrote: > I actually prefer this (in .vimrc): > > " Show trailing whitespace and spaces before tabs > hi link localWhitespaceError Error > au Syntax * syn match localWhitespaceError /\(\zs\%#\|\s\)\+$/ display > au Syntax * syn match localWhitespaceError / \+\ze\t/ display I prefer this: find . -type f -print0 | xargs -0 grep -Pn '[\t ]+$' It is editor agnostic, and I do not have to look through all source files for highlighted whitespace :-) > The script mentioned there *is* good for removing said whitespace, though > > Cheers, > Kyle Moffett > Jan -- ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [OT] Vim highlighting for trailing spaces 2007-06-29 7:39 ` Jan Engelhardt @ 2007-06-29 7:53 ` Josh Triplett 2007-06-29 8:01 ` Jan Engelhardt 0 siblings, 1 reply; 29+ messages in thread From: Josh Triplett @ 2007-06-29 7:53 UTC (permalink / raw) To: Jan Engelhardt Cc: Kyle Moffett, Dave Young, Li Yang-r58472, Chris Shoemaker, Josh Triplett, linux-kernel, akpm Jan Engelhardt wrote: > On Jun 28 2007 23:11, Kyle Moffett wrote: >> I actually prefer this (in .vimrc): >> >> " Show trailing whitespace and spaces before tabs >> hi link localWhitespaceError Error >> au Syntax * syn match localWhitespaceError /\(\zs\%#\|\s\)\+$/ display >> au Syntax * syn match localWhitespaceError / \+\ze\t/ display > > I prefer this: > > find . -type f -print0 | xargs -0 grep -Pn '[\t ]+$' > > It is editor agnostic, and I do not have to look through all source files for > highlighted whitespace :-) And if you really want highlighting, you can always use grep --color. :) - Josh Triplett ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [OT] Vim highlighting for trailing spaces 2007-06-29 7:53 ` Josh Triplett @ 2007-06-29 8:01 ` Jan Engelhardt 2007-06-29 8:42 ` Josh Triplett 0 siblings, 1 reply; 29+ messages in thread From: Jan Engelhardt @ 2007-06-29 8:01 UTC (permalink / raw) To: Josh Triplett Cc: Kyle Moffett, Dave Young, Li Yang-r58472, Chris Shoemaker, Josh Triplett, linux-kernel, akpm On Jun 29 2007 00:53, Josh Triplett wrote: >>> I actually prefer this (in .vimrc): >>> >>> " Show trailing whitespace and spaces before tabs >>> hi link localWhitespaceError Error >>> au Syntax * syn match localWhitespaceError /\(\zs\%#\|\s\)\+$/ display >>> au Syntax * syn match localWhitespaceError / \+\ze\t/ display >> >> I prefer this: >> >> find . -type f -print0 | xargs -0 grep -Pn '[\t ]+$' >> >> It is editor agnostic, and I do not have to look through all source files for >> highlighted whitespace :-) > >And if you really want highlighting, you can always use grep --color. :) Been there, done that, have GREP_COLOR env variable defined! Jan -- ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [OT] Vim highlighting for trailing spaces 2007-06-29 8:01 ` Jan Engelhardt @ 2007-06-29 8:42 ` Josh Triplett 2007-06-29 9:21 ` Björn Steinbrink 0 siblings, 1 reply; 29+ messages in thread From: Josh Triplett @ 2007-06-29 8:42 UTC (permalink / raw) To: Jan Engelhardt Cc: Kyle Moffett, Dave Young, Li Yang-r58472, Chris Shoemaker, Josh Triplett, linux-kernel, akpm Jan Engelhardt wrote: > On Jun 29 2007 00:53, Josh Triplett wrote: >>>> I actually prefer this (in .vimrc): >>>> >>>> " Show trailing whitespace and spaces before tabs >>>> hi link localWhitespaceError Error >>>> au Syntax * syn match localWhitespaceError /\(\zs\%#\|\s\)\+$/ display >>>> au Syntax * syn match localWhitespaceError / \+\ze\t/ display >>> I prefer this: >>> >>> find . -type f -print0 | xargs -0 grep -Pn '[\t ]+$' >>> >>> It is editor agnostic, and I do not have to look through all source files for >>> highlighted whitespace :-) >> And if you really want highlighting, you can always use grep --color. :) > > Been there, done that, have GREP_COLOR env variable defined! Same here. Now I just need to convince git-grep to use it. - Josh Triplett ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [OT] Vim highlighting for trailing spaces 2007-06-29 8:42 ` Josh Triplett @ 2007-06-29 9:21 ` Björn Steinbrink 2007-06-29 9:26 ` Dave Young 0 siblings, 1 reply; 29+ messages in thread From: Björn Steinbrink @ 2007-06-29 9:21 UTC (permalink / raw) To: Josh Triplett Cc: Jan Engelhardt, Kyle Moffett, Dave Young, Li Yang-r58472, Chris Shoemaker, Josh Triplett, linux-kernel, akpm On 2007.06.29 01:42:22 -0700, Josh Triplett wrote: > Jan Engelhardt wrote: > > On Jun 29 2007 00:53, Josh Triplett wrote: > >> And if you really want highlighting, you can always use grep --color. :) > > > > Been there, done that, have GREP_COLOR env variable defined! > > Same here. Now I just need to convince git-grep to use it. You need to convince grep. When piping its output to less, it won't colorize unless forced. Always forcing color via GREP_OPTIONS might break certain use-cases, and git-grep doesn't allow to pass options. So for me, a bash alias it is: alias gg='GREP_OPTIONS=--color=always git-grep' You might need to set LESS=-R in addition to that, to stop less from stripping the color codes. Björn ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [OT] Vim highlighting for trailing spaces 2007-06-29 9:21 ` Björn Steinbrink @ 2007-06-29 9:26 ` Dave Young 0 siblings, 0 replies; 29+ messages in thread From: Dave Young @ 2007-06-29 9:26 UTC (permalink / raw) To: Björn Steinbrink, Josh Triplett, Jan Engelhardt, Kyle Moffett, Dave Young, Li Yang-r58472, Chris Shoemaker, Josh Triplett, linux-kernel, akpm On 6/29/07, Björn Steinbrink <B.Steinbrink@gmx.de> wrote: > On 2007.06.29 01:42:22 -0700, Josh Triplett wrote: > > Jan Engelhardt wrote: > > > On Jun 29 2007 00:53, Josh Triplett wrote: > > >> And if you really want highlighting, you can always use grep --color. :) > > > > > > Been there, done that, have GREP_COLOR env variable defined! > > > > Same here. Now I just need to convince git-grep to use it. > > You need to convince grep. When piping its output to less, it won't > colorize unless forced. Always forcing color via GREP_OPTIONS might > break certain use-cases, and git-grep doesn't allow to pass options. So > for me, a bash alias it is: > > alias gg='GREP_OPTIONS=--color=always git-grep' > > You might need to set LESS=-R in addition to that, to stop less from > stripping the color codes. > > Björn > I ussualy prefer the simple vim search command: /\ *$ ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [OT] Vim highlighting for trailing spaces 2007-06-29 3:11 ` [OT] Vim highlighting for trailing spaces Kyle Moffett 2007-06-29 7:39 ` Jan Engelhardt @ 2007-06-29 12:40 ` Michael Tokarev 2007-06-29 12:49 ` Dmitry Torokhov 1 sibling, 1 reply; 29+ messages in thread From: Michael Tokarev @ 2007-06-29 12:40 UTC (permalink / raw) To: Kyle Moffett Cc: Dave Young, Li Yang-r58472, Josh Triplett, Jan Engelhardt, Chris Shoemaker, Josh Triplett, linux-kernel, akpm Kyle Moffett wrote: > On Jun 28, 2007, at 03:20:24, Dave Young wrote: >> And for vim trailing space, there's a tip in vim.org: >> http://www.vim.org/tips/tip.php?tip_id=878 > > I actually prefer this (in .vimrc): > > " Show trailing whitespace and spaces before tabs > hi link localWhitespaceError Error > au Syntax * syn match localWhitespaceError /\(\zs\%#\|\s\)\+$/ display > au Syntax * syn match localWhitespaceError / \+\ze\t/ display > > It always displays trailing whitespace and spaces-before tabs... except > if your cursor is at the end of the whitespace. The updating is > occasionally a bit laggy (EG: Put spaces on a line and then move the > cursor off it without pressing <ENTER>), but when you hit Ctrl-L, enter, > or edit an adjacent line then it updates. Stolen from an old message in LKML - I don't remember who's the author: highlight WhitespaceEOL ctermbg=red guibg=red match WhitespaceEOL /\s\+$/ Works without any glitches here (not "laggy"). But I don't use syntax coloring - never tried if it works with coloring or not. /mjt ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [OT] Vim highlighting for trailing spaces 2007-06-29 12:40 ` Michael Tokarev @ 2007-06-29 12:49 ` Dmitry Torokhov 2007-06-30 0:00 ` Kyle Moffett 0 siblings, 1 reply; 29+ messages in thread From: Dmitry Torokhov @ 2007-06-29 12:49 UTC (permalink / raw) To: Michael Tokarev Cc: Kyle Moffett, Dave Young, Li Yang-r58472, Josh Triplett, Jan Engelhardt, Chris Shoemaker, Josh Triplett, linux-kernel, akpm On 6/29/07, Michael Tokarev <mjt@tls.msk.ru> wrote: > Kyle Moffett wrote: > > On Jun 28, 2007, at 03:20:24, Dave Young wrote: > >> And for vim trailing space, there's a tip in vim.org: > >> http://www.vim.org/tips/tip.php?tip_id=878 > > > > I actually prefer this (in .vimrc): > > > > " Show trailing whitespace and spaces before tabs > > hi link localWhitespaceError Error > > au Syntax * syn match localWhitespaceError /\(\zs\%#\|\s\)\+$/ display > > au Syntax * syn match localWhitespaceError / \+\ze\t/ display > > > > It always displays trailing whitespace and spaces-before tabs... except > > if your cursor is at the end of the whitespace. The updating is > > occasionally a bit laggy (EG: Put spaces on a line and then move the > > cursor off it without pressing <ENTER>), but when you hit Ctrl-L, enter, > > or edit an adjacent line then it updates. > > Stolen from an old message in LKML - I don't remember who's the author: > > highlight WhitespaceEOL ctermbg=red guibg=red > match WhitespaceEOL /\s\+$/ > > Works without any glitches here (not "laggy"). But I don't use > syntax coloring - never tried if it works with coloring or not. > That only highlights whitespace at the end of the lines. You might want to use pattern below to also highlight "tab after space" in the middle of the line: :highlight RedundantSpaces ctermbg=red guibg=red :match RedundantSpaces /\s\+$\| \+\ze\t/ -- Dmitry ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [OT] Vim highlighting for trailing spaces 2007-06-29 12:49 ` Dmitry Torokhov @ 2007-06-30 0:00 ` Kyle Moffett 0 siblings, 0 replies; 29+ messages in thread From: Kyle Moffett @ 2007-06-30 0:00 UTC (permalink / raw) To: Dmitry Torokhov Cc: Michael Tokarev, Dave Young, Li Yang-r58472, Josh Triplett, Jan Engelhardt, Chris Shoemaker, Josh Triplett, linux-kernel, akpm On Jun 29, 2007, at 08:49:42, Dmitry Torokhov wrote: > On 6/29/07, Michael Tokarev <mjt@tls.msk.ru> wrote: >> highlight WhitespaceEOL ctermbg=red guibg=red >> match WhitespaceEOL /\s\+$/ >> >> Works without any glitches here (not "laggy"). But I don't use >> syntax coloring - never tried if it works with coloring or not. >> > > That only highlights whitespace at the end of the lines. You might > want to use pattern below to also highlight "tab after space" in > the middle of the line: > > :highlight RedundantSpaces ctermbg=red guibg=red > :match RedundantSpaces /\s\+$\| \+\ze\t/ You missed the nice part about my vimrc patterns: :-D Kyle Moffett wrote: > It always displays trailing whitespace and spaces-before tabs... > except if your cursor is at the end of the whitespace. They intentionally *don't* display whitespace at the end of the line to the left of your cursor. I tried that one (that you quoted), but got annoyed by the fact that immediately after you typed any space or tab you had a little red blob to the left of the cursor. So some of that "lagginess" is intentionaly (although not all of it, due to vim limitations). Cheers, Kyle Moffett ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-28 6:58 ` Josh Triplett 2007-06-28 7:08 ` Li Yang-r58472 @ 2007-06-29 2:03 ` Andy Isaacson 1 sibling, 0 replies; 29+ messages in thread From: Andy Isaacson @ 2007-06-29 2:03 UTC (permalink / raw) To: Josh Triplett, Dave Young Cc: Jan Engelhardt, Chris Shoemaker, Josh Triplett, linux-kernel, akpm, Li Yang-r58472 On Wed, Jun 27, 2007 at 11:58:30PM -0700, Josh Triplett wrote: > Jan Engelhardt wrote: > > On Jun 28 2007 06:29, dave young wrote: > >> IMHO, another cause of trailing whitespace is human error, for > >> example long lines breaking will easy to cause the first line with one > >> traling whitespace (original space between the last two words). > > > > Most common errors (to me) are: > > > > - hit return+tab too quickly that it interchanges, hence producing > > the unwanted \t\n > > - hit return+return to start a new paragraph of code; > > the intermediate line remains indented if autoindent is on. > > Interestingly, emacs gets that case right: when you hit enter it places the > cursor at the properly indented insertion point, but if you leave the line > without typing anything it does not leave the indentation. I thought I > remembered vim doing the same thing, but I just tested and it appears not. It > seems to avoid leaving subsequent lines indented, but not the first one. I've previously found that vim's "cindent" mode is better than "smartindent", which is better than "autoindent". However, as of vim 6.3 autoindent seems to be fairly well off; the following does TRT: `int SPC foo() RET { RET C-t int SPC x; RET RET foo(); RET' (leaving an empty line between "int x;" and "foo();"). However, the following does leave a line matching /^ +$/ even in smartindent and cindent modes: `int SPC foo() RET { RET int SPC x; RET SPC BS bar(); RET' that is, if you edit the autoindented line before leaving it blank, then vim 6.3 will not remove the autoindent spaces when you leave the line. -andy ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-27 17:59 [PATCH] CodingStyle: Add information about trailing whitespace Josh Triplett 2007-06-27 18:05 ` Chris Shoemaker @ 2007-06-27 19:31 ` Andrew Morton 2007-06-27 22:14 ` Jan Engelhardt ` (2 more replies) 1 sibling, 3 replies; 29+ messages in thread From: Andrew Morton @ 2007-06-27 19:31 UTC (permalink / raw) To: Josh Triplett; +Cc: linux-kernel, josh On Wed, 27 Jun 2007 10:59:20 -0700 Josh Triplett <josht@linux.vnet.ibm.com> wrote: > +Do not leave trailing whitespace at the ends of lines. Some editors with > +"smart" indentation will insert whitespace at the beginning of new lines as > +appropriate, so you can start typing the next line of code right away. > +However, some such editors do not remove the whitespace if you end up not > +putting a line of code there, such as if you leave a blank line. As a result, > +you end up with lines containing trailing whitespace. > + > +Git will warn you about patches that introduce trailing whitespace, and can > +optionally strip the trailing whitespace for you; however, if applying a series > +of patches, this may make later patches in the series fail by changing their > +context lines. quilt has ways of detecting and/or correcting newly-added trailing whitespace, but I don't know the details. One could share the various scriptlets which detect and fix trailing whitespace but I think this issue is getting less and less important now, because most maintainers will zap the new whitespace prior to merging. <checks> akpm:/usr/src/25> grep -l "^+.*[ ]$" patches/git-*.patch patches/git-acpi.patch patches/git-alsa.patch patches/git-battery.patch patches/git-cifs.patch patches/git-drm.patch patches/git-gfs2-nmw.patch patches/git-hid.patch patches/git-ipwireless_cs.patch patches/git-ixgbe.patch patches/git-kgdb.patch patches/git-leds.patch patches/git-libata-all.patch patches/git-md-accel.patch patches/git-netdev-all.patch patches/git-newsetup.patch patches/git-nfs.patch patches/git-ocfs2.patch patches/git-pciseg.patch patches/git-qla3xxx.patch patches/git-selinux.patch patches/git-sym2.patch patches/git-unionfs.patch patches/git-watchdog.patch patches/git-wireless.patch damn. Bunch of lamers. But there's less than there used to be. ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-27 19:31 ` Andrew Morton @ 2007-06-27 22:14 ` Jan Engelhardt 2007-06-27 22:14 ` Oleg Verych [not found] ` <1183138323.17622.9.camel@shinybook.infradead.org> 2 siblings, 0 replies; 29+ messages in thread From: Jan Engelhardt @ 2007-06-27 22:14 UTC (permalink / raw) To: Andrew Morton; +Cc: Josh Triplett, linux-kernel, josh On Jun 27 2007 12:31, Andrew Morton wrote: > >quilt has ways of detecting and/or correcting newly-added trailing >whitespace, but I don't know the details. Upon `quilt ref`, it usually barfs about every line you touched where you added or kept whitespace at EOL. >One could share the various scriptlets which detect and fix trailing >whitespace but I think this issue is getting less and less important >now, because most maintainers will zap the new whitespace prior to >merging. > ><checks> >But there's less than there used to be. `| wc -l` it. The patches get larger, the # of patches declines :) Jan -- ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-27 19:31 ` Andrew Morton 2007-06-27 22:14 ` Jan Engelhardt @ 2007-06-27 22:14 ` Oleg Verych [not found] ` <1183138323.17622.9.camel@shinybook.infradead.org> 2 siblings, 0 replies; 29+ messages in thread From: Oleg Verych @ 2007-06-27 22:14 UTC (permalink / raw) To: Andrew Morton; +Cc: linux-kernel, josh > Newsgroups: gmane.linux.kernel > Date: Wed, 27 Jun 2007 12:31:22 -0700 ><checks> > > akpm:/usr/src/25> grep -l "^+.*[ ]$" patches/git-*.patch > patches/git-acpi.patch > patches/git-alsa.patch > patches/git-battery.patch > patches/git-cifs.patch > patches/git-drm.patch > patches/git-gfs2-nmw.patch > patches/git-hid.patch > patches/git-ipwireless_cs.patch > patches/git-ixgbe.patch > patches/git-kgdb.patch > patches/git-leds.patch > patches/git-libata-all.patch > patches/git-md-accel.patch > patches/git-netdev-all.patch > patches/git-newsetup.patch > patches/git-nfs.patch > patches/git-ocfs2.patch > patches/git-pciseg.patch > patches/git-qla3xxx.patch > patches/git-selinux.patch > patches/git-sym2.patch > patches/git-unionfs.patch > patches/git-watchdog.patch > patches/git-wireless.patch > > damn. Bunch of lamers. 9. The editor is the primary tool for programmers. People who don't choose an appropriate primary tool are worthless as professionals. among others in <http://quimby.gnus.org/circus/notes/programming.html> I've shared little sh script too, 4 + 2(optional) sed commands with comments of what whitespace crap was spotted. Yet nothing happened. Converse -- questions about why they are useless... Introduction of editor's labels in C files is the most outrages thing. Don't editors smart to see filename extensions first? If they don't, fix editors, not sources! > But there's less than there used to be. ____ ^ permalink raw reply [flat|nested] 29+ messages in thread
[parent not found: <1183138323.17622.9.camel@shinybook.infradead.org>]
[parent not found: <20070629175204.GA1341@zarina>]
[parent not found: <1183142639.1170.371.camel@pmac.infradead.org>]
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. [not found] ` <1183142639.1170.371.camel@pmac.infradead.org> @ 2007-06-29 19:31 ` Anton Vorontsov 2007-06-29 22:52 ` Henrique de Moraes Holschuh 0 siblings, 1 reply; 29+ messages in thread From: Anton Vorontsov @ 2007-06-29 19:31 UTC (permalink / raw) To: David Woodhouse Cc: Andrew Morton, vladimir.p.lebedev, Henrique de Moraes Holschuh, linux-acpi On Fri, Jun 29, 2007 at 07:43:59PM +0100, David Woodhouse wrote: > On Fri, 2007-06-29 at 21:52 +0400, Anton Vorontsov wrote: > > Andrew, regarding git-battery-vs-git-acpi.patch.. I'll merge it as > > soon as acpi related changes will hit Linus tree, would that be okay > > for you? Not that I don't like these changes, I do like them. But > > they'll break bare battery2-2.6 (based on Linus tree). Though, I can > > merge it now if that will make your living easier. > > Was anyone working on hooking up APM and ACPI to the new battery class, > btw? Don't know of anyone yet. But lets inquire appropriate people, I don't have x86 hardware with batteries, thus I hardly can help on that matter, nor following any x86 development. Henrique de Moraes Holschuh (IBM ACPI EXTRAS maintainer) was involved in battery class review, Cc'ed. Also Cc'ing ACPI BATTERY maintainer, and linux-acpi list. Just reminder: we're talking about power supply class, its git tree is at git://git.infradead.org/users/cbou/battery2-2.6.git, you may also find it in recent -mm patchsets. Most interesting directory is drivers/power/, contains power supply class and drivers, plus header file at include/linux/power_supply.h. Also, Documentation/power_supply_class.txt exits. Thanks, -- Anton Vorontsov email: cbou@mail.ru backup email: ya-cbou@yandex.ru irc://irc.freenode.org/bd2 ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH] CodingStyle: Add information about trailing whitespace. 2007-06-29 19:31 ` Anton Vorontsov @ 2007-06-29 22:52 ` Henrique de Moraes Holschuh 0 siblings, 0 replies; 29+ messages in thread From: Henrique de Moraes Holschuh @ 2007-06-29 22:52 UTC (permalink / raw) To: Anton Vorontsov, Shem Multinymous Cc: David Woodhouse, Andrew Morton, vladimir.p.lebedev, linux-acpi On Fri, 29 Jun 2007, Anton Vorontsov wrote: > On Fri, Jun 29, 2007 at 07:43:59PM +0100, David Woodhouse wrote: > > On Fri, 2007-06-29 at 21:52 +0400, Anton Vorontsov wrote: > > > Andrew, regarding git-battery-vs-git-acpi.patch.. I'll merge it as > > > soon as acpi related changes will hit Linus tree, would that be okay > > > for you? Not that I don't like these changes, I do like them. But > > > they'll break bare battery2-2.6 (based on Linus tree). Though, I can > > > merge it now if that will make your living easier. > > > > Was anyone working on hooking up APM and ACPI to the new battery class, > > btw? > > Don't know of anyone yet. But lets inquire appropriate people, I don't have > x86 hardware with batteries, thus I hardly can help on that matter, nor > following any x86 development. > > Henrique de Moraes Holschuh (IBM ACPI EXTRAS maintainer) was involved in > battery class review, Cc'ed. Also Cc'ing ACPI BATTERY maintainer, and > linux-acpi list. The thinkpad full SBS interface is only accessible through code that is not in-tree. I am sending this reply to Shem Multinymous, which maintains that code (tp_smapi). > Just reminder: we're talking about power supply class, its git tree > is at git://git.infradead.org/users/cbou/battery2-2.6.git, you may also > find it in recent -mm patchsets. Most interesting directory is > drivers/power/, contains power supply class and drivers, plus header > file at include/linux/power_supply.h. Also, > Documentation/power_supply_class.txt exits. -- "One disk to rule them all, One disk to find them. One disk to bring them all and in the darkness grind them. In the Land of Redmond where the shadows lie." -- The Silicon Valley Tarot Henrique Holschuh ^ permalink raw reply [flat|nested] 29+ messages in thread
end of thread, other threads:[~2007-06-30 0:00 UTC | newest]
Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-27 17:59 [PATCH] CodingStyle: Add information about trailing whitespace Josh Triplett
2007-06-27 18:05 ` Chris Shoemaker
2007-06-27 18:17 ` Josh Triplett
2007-06-27 19:32 ` Chris Shoemaker
2007-06-27 22:18 ` Jan Engelhardt
2007-06-28 6:00 ` dave young
2007-06-28 6:08 ` Josh Triplett
2007-06-28 6:29 ` dave young
2007-06-28 6:52 ` Jan Engelhardt
2007-06-28 6:58 ` Josh Triplett
2007-06-28 7:08 ` Li Yang-r58472
2007-06-28 7:10 ` Dave Young
2007-06-28 7:20 ` Dave Young
2007-06-29 3:11 ` [OT] Vim highlighting for trailing spaces Kyle Moffett
2007-06-29 7:39 ` Jan Engelhardt
2007-06-29 7:53 ` Josh Triplett
2007-06-29 8:01 ` Jan Engelhardt
2007-06-29 8:42 ` Josh Triplett
2007-06-29 9:21 ` Björn Steinbrink
2007-06-29 9:26 ` Dave Young
2007-06-29 12:40 ` Michael Tokarev
2007-06-29 12:49 ` Dmitry Torokhov
2007-06-30 0:00 ` Kyle Moffett
2007-06-29 2:03 ` [PATCH] CodingStyle: Add information about trailing whitespace Andy Isaacson
2007-06-27 19:31 ` Andrew Morton
2007-06-27 22:14 ` Jan Engelhardt
2007-06-27 22:14 ` Oleg Verych
[not found] ` <1183138323.17622.9.camel@shinybook.infradead.org>
[not found] ` <20070629175204.GA1341@zarina>
[not found] ` <1183142639.1170.371.camel@pmac.infradead.org>
2007-06-29 19:31 ` Anton Vorontsov
2007-06-29 22:52 ` Henrique de Moraes Holschuh
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.