diff options
author | Thomas White <taw@bitwiz.org.uk> | 2010-02-17 10:38:06 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2010-02-17 10:38:06 +0100 |
commit | 858aee656ef46d89bd26095bb88b28574cfe7212 (patch) | |
tree | 3b05880d816d0659e1b4564b246254b334ecb011 /src/index.c | |
parent | 055c12c8e43eaf8968f9bd16223cf807db9f076d (diff) |
Cell matching improvements
Diffstat (limited to 'src/index.c')
-rw-r--r-- | src/index.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/index.c b/src/index.c index 620caf7d..8faca4db 100644 --- a/src/index.c +++ b/src/index.c @@ -149,6 +149,11 @@ void index_pattern(struct image *image, IndexingMethod indm, int no_match) if ( image->indexed_cell == NULL ) { STATUS("No cell found.\n"); return; + } else { + STATUS("--------------------\n"); + STATUS("The indexed cell (before matching):\n"); + cell_print(image->indexed_cell); + STATUS("--------------------\n"); } if ( !no_match ) { |