diff options
author | bde <bde@FreeBSD.org> | 1997-03-19 01:15:44 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-03-19 01:15:44 +0000 |
commit | 847387de226a118803e45777a9a7d0dc053d0b23 (patch) | |
tree | f51c3e1390ac9f60a486d17c82973197459121a0 | |
parent | e32c9b1cfa72e80f75e70858aac6f9fa4b840b80 (diff) | |
download | FreeBSD-src-847387de226a118803e45777a9a7d0dc053d0b23.zip FreeBSD-src-847387de226a118803e45777a9a7d0dc053d0b23.tar.gz |
Fixed quoting in .Fn macro invocations in synopsis. The args must be
quoted individually. Quoting them all together sort of worked, except
for scsreq_build(), the long arg list was chopped near column 80, to
no avail since the closing parentheses was put on new line by itself.
-rw-r--r-- | lib/libscsi/scsi.3 | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/libscsi/scsi.3 b/lib/libscsi/scsi.3 index d57c28e..8699392 100644 --- a/lib/libscsi/scsi.3 +++ b/lib/libscsi/scsi.3 @@ -50,15 +50,15 @@ .Fd #include <sys/scsiio.h> .Fd #include <scsi.h> .Ft int -.Fn scsireq_buff_decode "u_char *ptr, size_t len, char *fmt, ..." +.Fn scsireq_buff_decode "u_char *ptr" "size_t len" "char *fmt" ... .Ft struct scsireq * -.Fn scsireq_build "struct scsireq *s, u_long len, caddr_t buf, u_long flags, char *fmt, ..." +.Fn scsireq_build "struct scsireq *s" "u_long len" "caddr_t buf" "u_long flags" "char *fmt" ... .Ft int -.Fn scsireq_decode "struct scsireq *, char *fmt, ..." +.Fn scsireq_decode "struct scsireq *" "char *fmt" ... .Ft int -.Fn scsireq_encode "struct scsireq *, char *fmt, ..." +.Fn scsireq_encode "struct scsireq *" "char *fmt" ... .Ft int -.Fn scsireq_enter "int fid, struct scsireq *s" +.Fn scsireq_enter "int fid" "struct scsireq *s" .Ft struct scsireq * .Fn scsireq_new void .Ft struct scsireq * @@ -66,9 +66,9 @@ .Ft int .Fn SCSIREQ_ERROR "struct scsireq *" .Ft int -.Fn scsi_open "const char *path, int flags" -.Ft void -.Fn scsi_debug "FILE *f, int ret, struct scsireq *s" +.Fn scsi_open "const char *path" "int flags" +.Ft int +.Fn scsi_debug "FILE *f" "int ret" "struct scsireq *s" .Ft FILE * .Fn scsi_debug_output "char *s" .Sh DESCRIPTION |