diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/etags.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c index 769a22027f7..acf20ddceb9 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -729,7 +729,9 @@ static const char Python_help [] = | |||
| 729 | generate a tag."; | 729 | generate a tag."; |
| 730 | 730 | ||
| 731 | static const char *Ruby_suffixes [] = | 731 | static const char *Ruby_suffixes [] = |
| 732 | { "rb", "ruby", NULL }; | 732 | { "rb", "ru", "rbw", NULL }; |
| 733 | static const char *Ruby_filenames [] = | ||
| 734 | { "Rakefile", "Thorfile", NULL }; | ||
| 733 | static const char Ruby_help [] = | 735 | static const char Ruby_help [] = |
| 734 | "In Ruby code, 'def' or 'class' or 'module' at the beginning of\n\ | 736 | "In Ruby code, 'def' or 'class' or 'module' at the beginning of\n\ |
| 735 | a line generate a tag. Constants also generate a tag."; | 737 | a line generate a tag. Constants also generate a tag."; |
| @@ -813,7 +815,7 @@ static language lang_names [] = | |||
| 813 | { "proc", no_lang_help, plain_C_entries, plain_C_suffixes }, | 815 | { "proc", no_lang_help, plain_C_entries, plain_C_suffixes }, |
| 814 | { "prolog", Prolog_help, Prolog_functions, Prolog_suffixes }, | 816 | { "prolog", Prolog_help, Prolog_functions, Prolog_suffixes }, |
| 815 | { "python", Python_help, Python_functions, Python_suffixes }, | 817 | { "python", Python_help, Python_functions, Python_suffixes }, |
| 816 | { "ruby", Ruby_help, Ruby_functions, Ruby_suffixes }, | 818 | { "ruby", Ruby_help,Ruby_functions,Ruby_suffixes,Ruby_filenames }, |
| 817 | { "scheme", Scheme_help, Scheme_functions, Scheme_suffixes }, | 819 | { "scheme", Scheme_help, Scheme_functions, Scheme_suffixes }, |
| 818 | { "tex", TeX_help, TeX_commands, TeX_suffixes }, | 820 | { "tex", TeX_help, TeX_commands, TeX_suffixes }, |
| 819 | { "texinfo", Texinfo_help, Texinfo_nodes, Texinfo_suffixes }, | 821 | { "texinfo", Texinfo_help, Texinfo_nodes, Texinfo_suffixes }, |