Skip to content

Commit 4289ff4

Browse files
committed
Is. #743 - remove 3 more non-API items
1 parent 9dee042 commit 4289ff4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/forward.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ typedef struct _IStack IStack;
6060
struct _Lexer;
6161
typedef struct _Lexer Lexer;
6262

63-
extern TidyAllocator TY_(g_default_allocator);
63+
TY_PRIVATE TidyAllocator TY_(g_default_allocator);
6464

6565
/** Wrappers for easy memory allocation using an allocator */
6666
#define TidyAlloc(allocator, size) ((allocator)->vtbl->alloc((allocator), (size)))

src/message.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@ static struct _dialogueDispatchTable {
10691069
** every message, because they're not all the complex and there aren't that
10701070
** many.
10711071
*/
1072-
TidyMessageImpl *formatDialogue( TidyDocImpl* doc, uint code, TidyReportLevel level, va_list args )
1072+
static TidyMessageImpl *formatDialogue( TidyDocImpl* doc, uint code, TidyReportLevel level, va_list args )
10731073
{
10741074
switch (code)
10751075
{

src/tidylib.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1571,7 +1571,7 @@ static struct _html5Info
15711571
{ "tt", TidyTag_TT },
15721572
{ 0, 0 }
15731573
};
1574-
Bool inRemovedInfo( uint tid )
1574+
static Bool inRemovedInfo( uint tid )
15751575
{
15761576
int i;
15771577
for (i = 0; ; i++) {

0 commit comments

Comments
 (0)