diff options
author | pommicket <pommicket@gmail.com> | 2023-01-06 21:47:59 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-06 21:47:59 -0500 |
commit | 42ae808f712efb7edac1bdc647a456cfcccb2d39 (patch) | |
tree | 678f108423517e0331657ca47a375f53b6ada438 /ted.h | |
parent | 1780e6ac17c208d749deee31af541a04e3b123fe (diff) |
fix various tags things
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1265,7 +1265,7 @@ void tags_generate(Ted *ted, bool run_in_build_window); // you may pass NULL for `out`, in which case just the number of matching tags is returned // (still maxing out at `out_size`). // each element in `out` should be freed when you're done with them. -size_t tags_beginning_with(Ted *ted, const char *prefix, char **out, size_t out_size); +size_t tags_beginning_with(Ted *ted, const char *prefix, char **out, size_t out_size, bool error_if_tags_does_not_exist); // go to the definition of the given tag bool tag_goto(Ted *ted, const char *tag); // get all tags in the tags file as SymbolInfos. |