]> granicus.if.org Git - multimarkdown/commitdiff
UPDATED: Update astyle
authorFletcher T. Penney <fletcher@fletcherpenney.net>
Sun, 20 Aug 2017 19:29:40 +0000 (15:29 -0400)
committerFletcher T. Penney <fletcher@fletcherpenney.net>
Sun, 20 Aug 2017 19:29:40 +0000 (15:29 -0400)
Makefile
Sources/libMultiMarkdown/mmd.c

index 7ca2d3f35a446128665f1d307f4d8cc2ab285cda..194da142d6a8796e3f00c8c00c324af2e1a255f8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -128,4 +128,4 @@ CHANGELOG:
 # Use astyle
 .PHONY : astyle
 astyle:
-       astyle --options=.astylerc "Sources/libMultiMarkdown/*.c" "Sources/multimarkdown/*.c" "Sources/libMultiMarkdown/*.h" "Sources/multimarkdown/*.h"
+       astyle --options=.astylerc "Sources/libMultiMarkdown/*.c" "Sources/multimarkdown/*.c" "Sources/libMultiMarkdown/*.h" 
index 132c163d00f7439b5a0cccf9591b32ae5d0874ca..a654529489448376159cb16598fe58570f12b48e 100644 (file)
@@ -2106,6 +2106,7 @@ handle_line:
                                break;
 
                        case BLOCK_DEFINITION:
+
                                // Sometimes these get created unintentionally inside other blocks
                                // Process inside it, then treat it like a line to be stripped
 
@@ -2417,7 +2418,7 @@ stack * mmd_string_transclusion_manifest(const char * source, const char * searc
        stack * result;
 
        mmd_engine * e = mmd_engine_create_with_string(source, 0);
-       
+
        result = mmd_engine_transclusion_manifest(e, search_path, source_path);
 
        mmd_engine_free(e, true);
@@ -2433,7 +2434,7 @@ stack * mmd_d_string_transclusion_manifest(DString * source, const char * search
        stack * result;
 
        mmd_engine * e = mmd_engine_create_with_dstring(source, 0);
-       
+
        result = mmd_engine_transclusion_manifest(e, search_path, source_path);
 
        mmd_engine_free(e, false);