unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
From: Ricardo Wurmus <rekado@elephly.net>
To: guile-devel@gnu.org
Subject: [PATCH] doc: Use UNLESS instead of single-armed IF.
Date: Sun, 14 Jun 2020 15:37:48 +0200	[thread overview]
Message-ID: <20200614133748.25657-1-rekado@elephly.net> (raw)

* doc/ref/posix.texi (Pipes): Use UNLESS in OPEN-OUTPUT-PIPE example.
---
 doc/ref/posix.texi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/ref/posix.texi b/doc/ref/posix.texi
index b2be9d707..ce753b864 100644
--- a/doc/ref/posix.texi
+++ b/doc/ref/posix.texi
@@ -2335,8 +2335,8 @@ Equivalent to @code{open-pipe} with mode @code{OPEN_WRITE}.
 @lisp
 (let ((port (open-output-pipe "lpr")))
   (display "Something for the line printer.\n" port)
-  (if (not (eqv? 0 (status:exit-val (close-pipe port))))
-      (error "Cannot print")))
+  (unless (eqv? 0 (status:exit-val (close-pipe port))))
+    (error "Cannot print"))
 @end lisp
 @end deffn
 
-- 
2.26.2





                 reply	other threads:[~2020-06-14 13:37 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/guile/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200614133748.25657-1-rekado@elephly.net \
    --to=rekado@elephly.net \
    --cc=guile-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).