1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 08:43:13 +02:00

spelling: case-sensitive

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2024-09-06 08:25:21 -04:00
committed by Sébastien Helleu
parent 0505a0ff76
commit c28696e602
24 changed files with 82 additions and 82 deletions
+1 -1
View File
@@ -1320,7 +1320,7 @@ gui_buffer_string_replace_local_var (struct t_gui_buffer *buffer,
* List is a comma-separated list of buffers, where exclusion is possible with
* char '!', and "*" means all buffers.
*
* Comparison is case sensitive.
* Comparison is case-sensitive.
*
* Examples:
* "*"
+2 -2
View File
@@ -162,7 +162,7 @@ struct t_gui_buffer
/* nicklist */
int nicklist; /* = 1 if nicklist is enabled */
int nicklist_case_sensitive; /* nicks are case sensitive ? */
int nicklist_case_sensitive; /* nicks are case-sensitive ? */
struct t_gui_nick_group *nicklist_root; /* pointer to groups root */
int nicklist_max_length; /* max length for a nick */
int nicklist_display_groups; /* display groups ? */
@@ -225,7 +225,7 @@ struct t_gui_buffer
enum t_gui_buffer_search text_search; /* text search type */
enum t_gui_buffer_search_dir text_search_direction;
/* search dir.: backward/forward */
int text_search_exact; /* case sensitive search? */
int text_search_exact; /* case-sensitive search? */
int text_search_regex; /* search with a regex */
regex_t *text_search_regex_compiled; /* regex used to search */
int text_search_where; /* prefix and/or msg */
+2 -2
View File
@@ -411,7 +411,7 @@ gui_completion_nickncmp (const char *base_word, const char *nick, int max)
}
/*
* Compares two strings (follows case sensitive flag in completion structure).
* Compares two strings (follows case-sensitive flag in completion structure).
*
* Returns:
* < 0: string1 < string2
@@ -431,7 +431,7 @@ gui_completion_strcmp (struct t_gui_completion *completion,
}
/*
* Compares two strings with max length (follows case sensitive flag in
* Compares two strings with max length (follows case-sensitive flag in
* completion structure).
*
* Returns:
+1 -1
View File
@@ -45,7 +45,7 @@ struct t_gui_completion
/* completion context */
struct t_gui_buffer *buffer; /* buffer where completion was asked */
int context; /* context: null, nick, command, cmd arg */
int case_sensitive; /* case sensitive completion? */
int case_sensitive; /* case-sensitive completion? */
char *base_command; /* cmd with arg to complete (can be NULL) */
int base_command_arg_index; /* # arg to complete (if context=cmd arg) */
char *base_word; /* word to complete (when Tab was pressed) */
+2 -2
View File
@@ -243,7 +243,7 @@ gui_nick_strdup_for_color (const char *nickname)
/*
* Finds a color name for a nick (according to nick letters).
*
* If case_range < 0, nick is case sensitive.
* If case_range < 0, nick is case-sensitive.
* If case_range == 0, nick is converted to lower case (with string_tolower).
* If case_range > 0, nick is converted to lower case (with string_tolower_range).
*
@@ -333,7 +333,7 @@ end:
/*
* Finds a color code for a nick (according to nick letters).
*
* If case_range < 0, nick is case sensitive.
* If case_range < 0, nick is case-sensitive.
* If case_range == 0, nick is converted to lower case (with string_tolower).
* If case_range > 0, nick is converted to lower case (with string_tolower_range).
*