<Ctrl>+. (with the cursor at the function definition) does not find the corresponding function declaration for a 'C' static function declared in a separate header file.
<Ctrl>+. does find the same static declaration correctly if it is located in the same file as the function definition.
There is no problem finding the declaration in the separate file if the function is not declared as static. Using the Symbols tab to find the static declaration/definition works fine, which says the tags are good.
example:
my_func.h
static int my_func(int my_arg);
my_func.c
static int my_func(int my_arg)
{
int status = 0;
return status;
}
Using SlickEdit Version 13.0.1.0