Add missing commas (oops).

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/branches/custom-tab-width@2828 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2008-07-28 13:38:12 +00:00
parent 677b91f140
commit cadbe70a57

View File

@ -48,8 +48,8 @@
/** Whether to use tabs, spaces or both to indent. */
typedef enum
{
GEANY_INDENT_TYPE_TABS /**< Tabs. */
GEANY_INDENT_TYPE_SPACES /**< Spaces. */
GEANY_INDENT_TYPE_TABS, /**< Tabs. */
GEANY_INDENT_TYPE_SPACES, /**< Spaces. */
GEANY_INDENT_TYPE_BOTH /**< Both. */
}
GeanyIndentType;