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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ SASS_SASSC_PATH ?= sassc
SASS_SPEC_PATH ?= sass-spec
SASSC_BIN = $(SASS_SASSC_PATH)/bin/sassc

SOURCES = ast.cpp bind.cpp constants.cpp context.cpp contextualize.cpp \
SOURCES = ast.cpp base64vlq.cpp bind.cpp constants.cpp context.cpp contextualize.cpp \
copy_c_str.cpp error_handling.cpp eval.cpp expand.cpp extend.cpp file.cpp \
functions.cpp inspect.cpp output_compressed.cpp output_nested.cpp \
parser.cpp prelexer.cpp sass.cpp sass_interface.cpp to_c.cpp to_string.cpp \
parser.cpp prelexer.cpp sass.cpp sass_interface.cpp source_map.cpp to_c.cpp to_string.cpp \
units.cpp

OBJECTS = $(SOURCES:.cpp=.o)
Expand Down
4 changes: 2 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
ACLOCAL_AMFLAGS = -I m4

lib_LTLIBRARIES = libsass.la
libsass_la_SOURCES = ast.cpp bind.cpp constants.cpp context.cpp contextualize.cpp \
libsass_la_SOURCES = ast.cpp base64vlq.cpp bind.cpp constants.cpp context.cpp contextualize.cpp \
copy_c_str.cpp error_handling.cpp eval.cpp expand.cpp extend.cpp file.cpp \
functions.cpp inspect.cpp output_compressed.cpp output_nested.cpp \
parser.cpp prelexer.cpp sass.cpp sass_interface.cpp to_c.cpp to_string.cpp \
parser.cpp prelexer.cpp sass.cpp sass_interface.cpp source_map.cpp to_c.cpp to_string.cpp \
units.cpp
libsass_la_LDFLAGS = -no-undefined -version-info 0:0:0

Expand Down
2 changes: 1 addition & 1 deletion ast.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace Sass {
{
if (!tail()) return 0;
if (!head()) return tail()->context(ctx);
return new (ctx.mem) Complex_Selector(path(), line(), combinator(), head(), tail()->context(ctx));
return new (ctx.mem) Complex_Selector(path(), position(), combinator(), head(), tail()->context(ctx));
}

Complex_Selector* Complex_Selector::innermost()
Expand Down
Loading