diff options
| author | Simon Tatham <anakin@pobox.com> | 2004-06-16 09:43:28 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2004-06-16 09:43:28 +0000 |
| commit | 5ebd9f206b6b60c151abbcadc02c0fbf5bd9cadd (patch) | |
| tree | 2bf3cfac544bb924b7157eb05698242cde9bf5a6 | |
| parent | a7963e261b59522cf57696b07058da760fb22e2e (diff) | |
| download | halibut-5ebd9f206b6b60c151abbcadc02c0fbf5bd9cadd.zip halibut-5ebd9f206b6b60c151abbcadc02c0fbf5bd9cadd.tar.gz halibut-5ebd9f206b6b60c151abbcadc02c0fbf5bd9cadd.tar.bz2 halibut-5ebd9f206b6b60c151abbcadc02c0fbf5bd9cadd.tar.xz | |
s/text-quotes/man-quotes/. Damn cut and paste. Thanks Jacob.
[originally from svn r4288]
| -rw-r--r-- | bk_man.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -42,7 +42,7 @@ static manconfig man_configure(paragraph *source) { /* * Two-pass configuration so that we can pick up global config * (e.g. `quotes') before having it overridden by specific - * config (`text-quotes'), irrespective of the order in which + * config (`man-quotes'), irrespective of the order in which * they occur. */ for (p = source; p; p = p->next) { @@ -81,7 +81,7 @@ static manconfig man_configure(paragraph *source) { ret.filename = dupstr(adv(p->origkeyword)); } else if (!ustricmp(p->keyword, L"man-bullet")) { ret.bullet = uadv(p->keyword); - } else if (!ustricmp(p->keyword, L"text-quotes")) { + } else if (!ustricmp(p->keyword, L"man-quotes")) { if (*uadv(p->keyword) && *uadv(uadv(p->keyword))) { ret.lquote = uadv(p->keyword); ret.rquote = uadv(ret.lquote); |