Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libsass
Submodule libsass updated 61 files
+1 −1 Readme.md
+1 −0 appveyor.yml
+4 −1 contrib/plugin.cpp
+20 −0 docs/README.md
+45 −0 docs/api-context-example.md
+152 −0 docs/api-context-internal.md
+268 −0 docs/api-context.md
+160 −0 docs/api-doc.md
+58 −0 docs/api-function-example.md
+8 −0 docs/api-function-internal.md
+48 −0 docs/api-function.md
+1,345 −0 docs/api-importer-example.md
+15 −0 docs/api-importer-internal.md
+84 −0 docs/api-importer.md
+0 −0 docs/api-value-example.md
+76 −0 docs/api-value-internal.md
+125 −0 docs/api-value.md
+27 −0 docs/build-on-darwin.md
+55 −0 docs/build-on-gentoo.md
+139 −0 docs/build-on-windows.md
+35 −0 docs/build-shared-library.md
+68 −0 docs/build-with-autotools.md
+50 −0 docs/build-with-makefiles.md
+107 −0 docs/build-with-mingw.md
+90 −0 docs/build-with-visual-studio.md
+97 −0 docs/build.md
+48 −0 docs/compatibility-plan.md
+17 −0 docs/contributing.md
+120 −0 docs/custom-functions-internal.md
+49 −0 docs/implementations.md
+47 −0 docs/plugins.go
+68 −0 docs/setup-environment.md
+51 −0 docs/source-map-internals.md
+26 −0 docs/trace.md
+17 −0 docs/triage.md
+39 −0 docs/unicode.md
+1 −0 include/sass/context.h
+1 −1 include/sass/functions.h
+64 −2 src/ast.cpp
+14 −2 src/ast.hpp
+1 −3 src/bind.cpp
+2 −0 src/constants.cpp
+2 −0 src/constants.hpp
+4 −0 src/debug.hpp
+2 −1 src/debugger.hpp
+2 −0 src/emitter.cpp
+8 −9 src/eval.cpp
+13 −2 src/expand.cpp
+27 −16 src/functions.cpp
+17 −0 src/inspect.cpp
+1 −1 src/json.cpp
+20 −0 src/lexer.cpp
+4 −0 src/lexer.hpp
+85 −29 src/parser.cpp
+5 −3 src/parser.hpp
+70 −19 src/prelexer.cpp
+11 −0 src/prelexer.hpp
+9 −6 src/sass_context.cpp
+1 −1 src/sass_values.cpp
+9 −0 src/util.cpp
+2 −0 src/util.hpp
2 changes: 1 addition & 1 deletion pysass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ static union Sass_Value* _to_sass_value(PyObject* value) {
static union Sass_Value* _call_py_f(
const union Sass_Value* sass_args,
Sass_Function_Entry cb,
struct Sass_Options* opts
struct Sass_Compiler* compiler
) {
size_t i;
PyObject* pyfunc = (PyObject*)sass_function_get_cookie(cb);
Expand Down