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.
This commit is contained in:
Bruce Evans 1997-03-19 01:15:44 +00:00
parent 1d23531445
commit 9837ab3f80
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=24010

View File

@ -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