Commit Briefs

Omar Polo

don't strlcat in a loop

not that of a big deal, but since we memset() at the start, just add the spaces directly instead of using strlcat. saves some cpu cycles.


Omar Polo

fix wrapping of link lines


Omar Polo

fix comment





Omar Polo

make do_load_url and friends return void

The 0/1 difference was once important since it would give the caller an idea whether the page was loaded immediately or asynchronously. This doesn't matter anymore. Furthermore, this whole family of function can't really fail (as telescope doesn't handle memory allocation failures gracefully.)


Omar Polo

configure: add --with-Werror flag


Omar Polo

add missing void to please clang


Omar Polo

fix freezr' post url


Omar Polo

use AC_SEARCH_LIBS instead of AC_CHECK_LIB

AC_CHECK_LIB is quite awful actually even if it has a nice name


Omar Polo

AC_PROG_C_C99 -> AC_PROG_C



Omar Polo

sync imsg


Omar Polo

add missing #include "compat.h"