From: Oswald Buddenhagen Date: Tue, 13 Aug 2024 09:06:31 +0000 (+0200) Subject: git-gui: strip commit messages less aggressively X-Git-Tag: v2.48.0-rc0~66^2^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=90934966bbac07d8d480b5257ba50945f0ec45c8;p=thirdparty%2Fgit.git git-gui: strip commit messages less aggressively We would strip all leading and trailing whitespace, which git commit does not. Let's be consistent here. Signed-off-by: Oswald Buddenhagen Signed-off-by: Johannes Sixt --- diff --git a/lib/commit.tcl b/lib/commit.tcl index f00a634624..208dc2817c 100644 --- a/lib/commit.tcl +++ b/lib/commit.tcl @@ -207,12 +207,17 @@ You must stage at least 1 file before you can commit. # -- A message is required. # - set msg [string trim [$ui_comm get 1.0 end]] + set msg [$ui_comm get 1.0 end] + # Strip trailing whitespace regsub -all -line {[ \t\r]+$} $msg {} msg # Strip comment lines regsub -all {(^|\n)#[^\n]*} $msg {\1} msg + # Strip leading empty lines + regsub {^\n*} $msg {} msg # Compress consecutive empty lines regsub -all {\n{3,}} $msg "\n\n" msg + # Strip trailing empty line + regsub {\n\n$} $msg "\n" msg if {$msg eq {}} { error_popup [mc "Please supply a commit message.