Commit Briefs

Omar Polo

move util.c declarations in utils.h

it's not spelled `util.h' because otherwise it'd get included instead of /usr/include/util.h



Omar Polo

sort token names


Omar Polo

drop leading T from token names


Omar Polo

allow newlines after {

with the conflict/reduce fix, it become illegal to have a newline after {, which is not good.


Omar Polo

avoid a shift/reduce conflict

yacc/bison reports 8 shift/reduce conflicts because the rule styleopts optnl is redundant.




Omar Polo

set the protocol type for proxies

we still support only gemini:// proxies still



Omar Polo

make \n optional in some contexts


Omar Polo

typo

prefix "→ " " " ended up using both as prefix for the line and the continuations the first string given, ignoring the second argument. Found and reported by tgl, thanks!!



Omar Polo

second part of my "ignore \r"


Omar Polo

ignore \r

otherwise it would complain about a syntax error (it would treat \r as a string of one character.) Found by TheGnuserland, thanks!!