SF.net SVN: geany-plugins:[2013] trunk/geany-plugins/geanyvc/src/vc_bzr.c
frlan at users.sourceforge.net
frlan at xxxxx
Sat Apr 9 15:08:59 UTC 2011
Revision: 2013
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2013&view=rev
Author: frlan
Date: 2011-04-09 15:08:59 +0000 (Sat, 09 Apr 2011)
Log Message:
-----------
GeanyVC: Remove some comments which seems to be there from some debugging
Modified Paths:
--------------
trunk/geany-plugins/geanyvc/src/vc_bzr.c
Modified: trunk/geany-plugins/geanyvc/src/vc_bzr.c
===================================================================
--- trunk/geany-plugins/geanyvc/src/vc_bzr.c 2011-04-06 15:06:44 UTC (rev 2012)
+++ trunk/geany-plugins/geanyvc/src/vc_bzr.c 2011-04-09 15:08:59 UTC (rev 2013)
@@ -198,14 +198,8 @@
status = FILE_STATUS_ADDED;
else if (*p == '-')
status = FILE_STATUS_DELETED;
- // rename
- //else if (*p == 'R')
else if (*p == '?')
status = FILE_STATUS_UNKNOWN;
- // conflicts
- //else if (*p == 'C')
- // pending merge
- //else if (*p == 'P')
pstatus = SECOND_CHAR;
}
else if (pstatus == SECOND_CHAR)
@@ -214,16 +208,12 @@
status = FILE_STATUS_ADDED;
else if (*p == 'D')
status = FILE_STATUS_DELETED;
- // file kind changed
- //else if (*p == 'K')
else if (*p == 'M')
status = FILE_STATUS_MODIFIED;
pstatus = THIRD_CHAR;
}
else if (pstatus == THIRD_CHAR)
{
- // execute bit change
- //if (*p == '*')
pstatus = SKIP_SPACE;
}
else if (pstatus == SKIP_SPACE)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Plugins-Commits
mailing list