ramccor / vcscommand

Automatically exported from code.google.com/p/vcscommand
0 stars 0 forks source link

VCSCommit adds an extra blank line to my commit log messages #102

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. open up a file under svn control
2. run VCSCommit (,cc)
3. type a log message (Shift-ZZ to save)
4. svn log shows message with an extra blank line at tend

What is the expected output? What do you see instead?
I expect svn log to show this:
-----------------------------------------------------------------------
r65 | sam.mingolelli | 2012-12-15 02:48:14 -0500 (Sat, 15 Dec 2012) | 1 lines

Removed 3 consts from writeDerivedImage method's prototype.
------------------------------------------------------------------------

But it shows log message like this:
r65 | sam.mingolelli | 2012-12-15 02:48:14 -0500 (Sat, 15 Dec 2012) | 2 lines

Removed 3 consts from writeDerivedImage method's prototype.

------------------------------------------------------------------------

What version of the product are you using? On what operating system?
% svn --version
svn, version 1.6.17 (r1128011)
   compiled Jun  2 2011, 15:24:04

% vim --version
VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Sep 21 2011 09:27:09)
Included patches: 1-315

vcscommand:
vcscommand-1.99.46.zip  1.99.46 2011-12-06

Original issue reported on code.google.com by sam.ming...@gmail.com on 15 Dec 2012 at 4:46

GoogleCodeExporter commented 9 years ago
This appears to be the way SVN works.  If you commit from the command line (but 
without the -m switch), the message you create in your editor will be given an 
extra newline.  The only way to avoid it is by using the -m switch and typing 
the message directly on the command line.

Original comment by bob.hies...@gmail.com on 12 Apr 2013 at 3:25