diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-12-21 17:34:34 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-12-21 17:34:34 +0000 |
commit | 4dc4b0615b53eb47764bc39ccef427bea6667c4e (patch) | |
tree | 5d337d4f055c3bd362e75aae73a5b4871b6b2956 /lib/libc/hash | |
parent | fcf3598d1432173647a1b38fa705e1a572173c5d (diff) |
mdoc prefers `\e' as an escape character.
Diffstat (limited to 'lib/libc/hash')
-rw-r--r-- | lib/libc/hash/rmd160.3 | 4 | ||||
-rw-r--r-- | lib/libc/hash/sha1.3 | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/hash/rmd160.3 b/lib/libc/hash/rmd160.3 index 38ce2f64261..f40538f3d60 100644 --- a/lib/libc/hash/rmd160.3 +++ b/lib/libc/hash/rmd160.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: rmd160.3,v 1.12 2000/04/18 03:01:29 aaron Exp $ +.\" $OpenBSD: rmd160.3,v 1.13 2000/12/21 17:34:33 aaron Exp $ .\" .\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> .\" All rights reserved. @@ -172,7 +172,7 @@ RMD160Final(results, &rmd); printf("0x"); for (n = 0; n < 20; n++) printf("%02x", results[n]); -putchar('\\n'); +putchar('\en'); .Ed .Pp Alternately, the helper functions could be used in the following way: diff --git a/lib/libc/hash/sha1.3 b/lib/libc/hash/sha1.3 index 0ed67a75f97..d453cc15d4e 100644 --- a/lib/libc/hash/sha1.3 +++ b/lib/libc/hash/sha1.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sha1.3,v 1.18 2000/04/18 03:01:29 aaron Exp $ +.\" $OpenBSD: sha1.3,v 1.19 2000/12/21 17:34:33 aaron Exp $ .\" .\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> .\" All rights reserved. @@ -168,7 +168,7 @@ SHA1Final(results, &sha); printf("0x"); for (n = 0; n < 20; n++) printf("%02x", results[n]); -putchar('\\n'); +putchar('\en'); .Ed .Pp Alternately, the helper functions could be used in the following way: |