Remove 2 unnecessary deprecated macros.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2976 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2008-09-19 16:45:07 +00:00
parent c538b55903
commit 1bbb9ba3c7
2 changed files with 2 additions and 4 deletions

View File

@ -3,6 +3,8 @@
* src/sciwrappers.c:
Disable indent guides for the Diff filetype, as they can be
distracting as added/removed lines don't get them.
* src/plugindata.h:
Remove 2 unnecessary deprecated macros.
2008-09-18 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>

View File

@ -473,10 +473,6 @@ EditorFuncs;
#define DOC_IDX_VALID(doc_idx) \
((doc_idx) >= 0 && (guint)(doc_idx) < documents_array->len && documents[doc_idx]->is_valid)
#define find_bracematch(x, y) find_matching_brace((x), (y))
#define can_copy(x) has_selection((x))
#endif /* GEANY_DISABLE_DEPRECATED */
#endif