##// END OF EJS Templates
revlog: delete references to deleted nullid sentinel value...
Martin von Zweigbergk -
r43981:ae5e3951 default
parent child Browse files
Show More
@@ -62,10 +62,9 b' typedef struct {'
62 * This class has two behaviors.
62 * This class has two behaviors.
63 *
63 *
64 * When used in a list-like way (with integer keys), we decode an
64 * When used in a list-like way (with integer keys), we decode an
65 * entry in a RevlogNG index file on demand. Our last entry is a
65 * entry in a RevlogNG index file on demand. We have limited support for
66 * sentinel, always a nullid. We have limited support for
67 * integer-keyed insert and delete, only at elements right before the
66 * integer-keyed insert and delete, only at elements right before the
68 * sentinel.
67 * end.
69 *
68 *
70 * With string keys, we lazily perform a reverse mapping from node to
69 * With string keys, we lazily perform a reverse mapping from node to
71 * rev, using a base-16 trie.
70 * rev, using a base-16 trie.
@@ -2466,7 +2465,7 b' static void index_invalidate_added(index'
2466
2465
2467 /*
2466 /*
2468 * Delete a numeric range of revs, which must be at the end of the
2467 * Delete a numeric range of revs, which must be at the end of the
2469 * range, but exclude the sentinel nullid entry.
2468 * range.
2470 */
2469 */
2471 static int index_slice_del(indexObject *self, PyObject *item)
2470 static int index_slice_del(indexObject *self, PyObject *item)
2472 {
2471 {
General Comments 0
You need to be logged in to leave comments. Login now