about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2009-12-08 18:30:02 +0100
committerLars Hjemli <hjemli@gmail.com>2009-12-08 18:30:02 +0100
commit5c34d96f7e000eb47418ac9e39dabf92b767c9f2 (patch)
treeb5db40ff125329f897cef3b81131a637fb3a56af
parentMerge branch 'stable' (diff)
parentDon't crash when a repo-specific readme file is used (diff)
downloadcgit-pink-5c34d96f7e000eb47418ac9e39dabf92b767c9f2.tar.gz
cgit-pink-5c34d96f7e000eb47418ac9e39dabf92b767c9f2.zip
Merge branch 'stable'
Diffstat (limited to '')
-rw-r--r--cgit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cgit.c b/cgit.c
index a17f40d..bfde9f9 100644
--- a/cgit.c
+++ b/cgit.c
@@ -68,9 +68,9 @@ void repo_config(struct cgit_repo *repo, const char *name, const char *value)
 		repo->section = xstrdup(value);
 	else if (!strcmp(name, "readme") && value != NULL) {
 		if (*value == '/')
-			ctx.repo->readme = xstrdup(value);
+			repo->readme = xstrdup(value);
 		else
-			ctx.repo->readme = xstrdup(fmt("%s/%s", ctx.repo->path, value));
+			repo->readme = xstrdup(fmt("%s/%s", repo->path, value));
 	} else if (ctx.cfg.enable_filter_overrides) {
 		if (!strcmp(name, "about-filter"))
 			repo->about_filter = new_filter(value, 0);
gml.1?id=d6b449f4ac88ec30a3882272e6261651d3d1348b&follow=1'>Add htagml -xJune McEnroe 2021-01-12Prevent matching the same tag twiceJune McEnroe 2021-01-12Process htagml file line by lineJune McEnroe This simplifies some things, adds support for line number tag definitions, and should enable combining htagml with other preprocessors in the future. 2021-01-12Split fields by tab onlyJune McEnroe Also don't fail hard on non-forward-search definitions. 2021-01-12List both Makefile and html.sh under README.7June McEnroe 2021-01-12Add htagml exampleJune McEnroe 2021-01-12Use mandoc and htagml for bin htmlJune McEnroe 2021-01-12Add htagmlJune McEnroe 2021-01-12Replace causal.agency with a simple mdoc pageJune McEnroe 2021-01-11Publish "Using vi"June McEnroe 2021-01-11Enable diff.colorMovedJune McEnroe 2021-01-10Set less search case-insensitiveJune McEnroe 2021-01-10Set EXINITJune McEnroe neovim is laggy as hell in my OpenBSD VM, so I switched to vi so I could type without getting frustrated. 2021-01-09Add c -t flag to print expression typeJune McEnroe Also add missing float case. 2021-01-05Update taglineJune McEnroe