~ubuntu-branches/ubuntu/vivid/silversearcher-ag/vivid

« back to all changes in this revision

Viewing changes to src/options.h

  • Committer: Package Import Robot
  • Author(s): Hajime Mizuno
  • Date: 2015-01-26 10:32:49 UTC
  • mfrom: (1.2.1) (10.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20150126103249-bxlxo8eagay3mj4h
Tags: 0.28.0-1
* new upstream release
* upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
#define DEFAULT_CONTEXT_LEN 2
12
12
#define DEFAULT_MAX_SEARCH_DEPTH 25
13
13
enum case_behavior {
 
14
    CASE_DEFAULT, /* Changes to CASE_SMART at the end of option parsing */
14
15
    CASE_SENSITIVE,
15
16
    CASE_INSENSITIVE,
16
17
    CASE_SMART,
47
48
    int literal;
48
49
    int literal_starts_wordchar;
49
50
    int literal_ends_wordchar;
50
 
    int max_matches_per_file;
 
51
    size_t max_matches_per_file;
51
52
    int max_search_depth;
52
 
    int null_follows_filename;
 
53
    int only_matching;
 
54
    char path_sep;
53
55
    char *path_to_agignore;
54
56
    int print_break;
 
57
    int print_count;
55
58
    int print_filename_only;
56
59
    int print_path;
57
60
    int print_line_numbers;