News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

SVN Linefeed and propset issues

Started by stahta01, October 28, 2014, 01:18:09 PM

Previous topic - Next topic

stahta01

FYI:

I have decided to start a thread on the possible linefeed issues I find in my Git Repo that likely exist in the SVN Repo.

There is no SVN property set on file src/plugins/contrib/SpellChecker/hunspell/src/parsers/xmlparser.cxx.
I think at least svn:eol-style needs done.


svn propset svn:eol-style native src/plugins/contrib/SpellChecker/hunspell/src/parsers/xmlparser.cxx



Index: src/plugins/contrib/SpellChecker/hunspell/src/parsers/xmlparser.cxx
===================================================================
--- src/plugins/contrib/SpellChecker/hunspell/src/parsers/xmlparser.cxx (revision 10016)
+++ src/plugins/contrib/SpellChecker/hunspell/src/parsers/xmlparser.cxx (working copy)

Property changes on: src/plugins/contrib/SpellChecker/hunspell/src/parsers/xmlparser.cxx
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property


Tim S.
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

ollydbg

If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.