diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-12-01 16:14:15 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-12-01 16:14:15 +0200 |
commit | 319b3d8bba5793a56654d143a4ac75170698e141 (patch) | |
tree | f018b77dd079cccd3bdd1620c281f491e79aecd2 /src/bookmarks.c | |
parent | b18b380014222131572a186888e6aa035c9c06e1 (diff) |
Added dialog for changing feed type
This also gives feedback about a newly added subscription.
Diffstat (limited to 'src/bookmarks.c')
-rw-r--r-- | src/bookmarks.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bookmarks.c b/src/bookmarks.c index 8bde5b8b..54b0407f 100644 --- a/src/bookmarks.c +++ b/src/bookmarks.c | |||
@@ -42,6 +42,7 @@ void deinit_Bookmark(iBookmark *d) { | |||
42 | } | 42 | } |
43 | 43 | ||
44 | iBool hasTag_Bookmark(const iBookmark *d, const char *tag) { | 44 | iBool hasTag_Bookmark(const iBookmark *d, const char *tag) { |
45 | if (!d) return iFalse; | ||
45 | iRegExp *pattern = new_RegExp(format_CStr("\\b%s\\b", tag), caseSensitive_RegExpOption); | 46 | iRegExp *pattern = new_RegExp(format_CStr("\\b%s\\b", tag), caseSensitive_RegExpOption); |
46 | iRegExpMatch m; | 47 | iRegExpMatch m; |
47 | init_RegExpMatch(&m); | 48 | init_RegExpMatch(&m); |