File tree Expand file tree Collapse file tree 2 files changed +2
-21
lines changed Expand file tree Collapse file tree 2 files changed +2
-21
lines changed Original file line number Diff line number Diff line change @@ -875,7 +875,6 @@ set default_config(merge.summary) false
875
875
set default_config(merge.verbosity) 2
876
876
set default_config(user.name) {}
877
877
set default_config(user.email) {}
878
- set default_config(core.commentchar) " #"
879
878
880
879
set default_config(gui.encoding) [ encoding system]
881
880
set default_config(gui.matchtrackingbranch) false
@@ -3437,10 +3436,6 @@ proc trace_commit_type {varname args} {
3437
3436
merge {set txt [ mc " Merge Commit Message:" ] }
3438
3437
* {set txt [ mc " Commit Message:" ] }
3439
3438
}
3440
-
3441
- set comment_char [ get_config core.commentchar]
3442
- set txt [ string cat $txt \
3443
- [mc " (Lines starting with '$comment_char ' will be ignored)" ] ]
3444
3439
$ui_coml conf -text $txt
3445
3440
}
3446
3441
trace add variable commit_type write trace_commit_type
Original file line number Diff line number Diff line change @@ -141,20 +141,6 @@ proc setup_commit_encoding {msg_wt {quiet 0}} {
141
141
}
142
142
}
143
143
144
- proc strip_msg {msg} {
145
- set cmd [concat [list | ] [_git_cmd stripspace] --strip-comments]
146
- _trace_exec $cmd
147
- set fd [open $cmd r+]
148
- fconfigure $fd -translation binary -encoding utf-8
149
-
150
- puts -nonewline $fd $msg
151
- close $fd w
152
- set result [read $fd ]
153
- close $fd
154
-
155
- return $result
156
- }
157
-
158
144
proc commit_tree {} {
159
145
global HEAD commit_type file_states ui_comm repo_config
160
146
global pch_error
@@ -221,8 +207,8 @@ You must stage at least 1 file before you can commit.
221
207
222
208
# -- A message is required.
223
209
#
224
- set msg [strip_msg [$ui_comm get 1.0 end]]
225
-
210
+ set msg [string trim [$ui_comm get 1.0 end]]
211
+ regsub -all -line {[ \t\r]+$} $msg {} msg
226
212
if {$msg eq {}} {
227
213
error_popup [mc " Please supply a commit message.
228
214
You can’t perform that action at this time.
0 commit comments