1
1

Removed trailing comma in enumeration.

Этот коммит содержится в:
Roland Illig 2004-08-17 11:13:10 +00:00
родитель 2ebf787653
Коммит 756067410f
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -66,7 +66,7 @@ char *_icase_search (char *text, char *data, int *lng);
enum {
match_file, /* match a filename, use easy_patterns */
match_normal, /* match pattern, use easy_patterns */
match_regex, /* match pattern, force using regex */
match_regex /* match pattern, force using regex */
};
extern int easy_patterns;

Просмотреть файл

@ -85,7 +85,7 @@ int query_dialog (const char *header, const char *text, int flags, int count, ..
/* flags for message() and query_dialog() */
enum {
D_NORMAL = 0,
D_ERROR = 1,
D_ERROR = 1
} /* dialog options */;
#endif /* __WTOOLS_H */