1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

[css] Add to the end of list. Refs #301

It needs more testing.
This commit is contained in:
Witold Filipczyk 2024-04-20 20:06:45 +02:00
parent 9c464a0348
commit d86ce27523

View File

@ -5,6 +5,7 @@
#include "config.h"
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@ -133,7 +134,7 @@ add_selector_property(struct css_selector *selector, struct css_property *prop)
if (newprop) {
copy_struct(newprop, prop);
add_to_list(selector->properties, newprop);
add_to_list_end(selector->properties, newprop);
}
}