All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scripts/Lindent: increase the maximum line length to 100
@ 2020-07-03  8:08 Zong Li
  2020-07-03  8:51 ` Joe Perches
  0 siblings, 1 reply; 8+ messages in thread
From: Zong Li @ 2020-07-03  8:08 UTC (permalink / raw)
  To: joe, akpm, linux-kernel; +Cc: Zong Li

As the patch 'bdc48fa11e46 ("checkpatch/coding-style: deprecate
80-column warning")', increase the default limit to 100 characters,
we also increase the maximum line length to 100 for indent script.

Signed-off-by: Zong Li <zong.li@sifive.com>
---
 scripts/Lindent | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/Lindent b/scripts/Lindent
index 1688c44c2df6..11f14a4f2048 100755
--- a/scripts/Lindent
+++ b/scripts/Lindent
@@ -1,7 +1,7 @@
 #!/bin/sh
 # SPDX-License-Identifier: GPL-2.0
 
-PARAM="-npro -kr -i8 -ts8 -sob -l80 -ss -ncs -cp1"
+PARAM="-npro -kr -i8 -ts8 -sob -l100 -ss -ncs -cp1"
 
 RES=`indent --version | cut -d' ' -f3`
 if [ "$RES" = "" ]; then
-- 
2.27.0


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

end of thread, other threads:[~2020-07-03 10:32 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-03  8:08 [PATCH] scripts/Lindent: increase the maximum line length to 100 Zong Li
2020-07-03  8:51 ` Joe Perches
2020-07-03  9:19   ` Zong Li
2020-07-03  9:39     ` Miguel Ojeda
2020-07-03  9:41   ` Miguel Ojeda
2020-07-03  9:51     ` Joe Perches
2020-07-03 10:22       ` Zong Li
2020-07-03 10:32         ` Joe Perches

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.