summaryrefslogtreecommitdiff
path: root/ted.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-06 21:47:59 -0500
committerpommicket <pommicket@gmail.com>2023-01-06 21:47:59 -0500
commit42ae808f712efb7edac1bdc647a456cfcccb2d39 (patch)
tree678f108423517e0331657ca47a375f53b6ada438 /ted.h
parent1780e6ac17c208d749deee31af541a04e3b123fe (diff)
fix various tags things
Diffstat (limited to 'ted.h')
-rw-r--r--ted.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ted.h b/ted.h
index 270adff..bc99123 100644
--- a/ted.h
+++ b/ted.h
@@ -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.