summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-09-19 20:16:49 +0200
committerGitHub <noreply@github.com>2018-09-19 20:16:49 +0200
commit144234c61f9d0ea53069c9182f95a0fed7526206 (patch)
tree1dbe98b1946655a044c2ab44914eaf9f148a1ecd /Bugzilla
parentb8b2a943056adbb112474df7bdf766970a56b2dc (diff)
downloadbugzilla-144234c61f9d0ea53069c9182f95a0fed7526206.tar.gz
bugzilla-144234c61f9d0ea53069c9182f95a0fed7526206.tar.xz
no bug - bump Alien::libcmark_gfm
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Markdown/GFM.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Markdown/GFM.pm b/Bugzilla/Markdown/GFM.pm
index f3f24fc6a..367dc7a53 100644
--- a/Bugzilla/Markdown/GFM.pm
+++ b/Bugzilla/Markdown/GFM.pm
@@ -69,9 +69,9 @@ $FFI->attach(cmark_markdown_to_html => ['opaque', 'int', 'markdown_options_t'] =
);
# This has to happen after something from the main lib is loaded
-$FFI->attach('core_extensions_ensure_registered' => [] => 'void');
+$FFI->attach('cmark_gfm_core_extensions_ensure_registered' => [] => 'void');
-core_extensions_ensure_registered();
+cmark_gfm_core_extensions_ensure_registered();
Bugzilla::Markdown::GFM::SyntaxExtension->SETUP($FFI);
Bugzilla::Markdown::GFM::SyntaxExtensionList->SETUP($FFI);