diff options
| author | rsc <devnull@localhost> | 2006-05-06 22:52:32 +0000 |
|---|---|---|
| committer | rsc <devnull@localhost> | 2006-05-06 22:52:32 +0000 |
| commit | 95d412d4bca1e7855818e09ee5afa260e6356504 (patch) | |
| tree | 4dc54d35622b4525cd2f42ef8c4c5e30578d2fb7 /src/cmd/htmlroff | |
| parent | e861a5bd32de4c26a0ef3eea094768b704b99936 (diff) | |
correct utfmap (Michael Teichgräber)
Diffstat (limited to 'src/cmd/htmlroff')
| -rw-r--r-- | src/cmd/htmlroff/char.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/htmlroff/char.c b/src/cmd/htmlroff/char.c index e6797516..151c9339 100644 --- a/src/cmd/htmlroff/char.c +++ b/src/cmd/htmlroff/char.c @@ -90,7 +90,7 @@ troff2rune(Rune *rs) trtab[ntrtab] = trinit[i]; ntrtab++; } - file = "/sys/lib/troff/font/devutf/utfmap"; + file = unsharp("#9/troff/font/devutf/utfmap"); if((b = Bopen(file, OREAD)) == nil) sysfatal("open %s: %r", file); while((p = Brdline(b, '\n')) != nil){ |