summaryrefslogtreecommitdiff
path: root/doc/lispref/control.texi
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-04-25 20:31:47 -0400
committerGlenn Morris <rgm@gnu.org>2012-04-25 20:31:47 -0400
commit16152b76a4f0fd82674479b64d923bd86aab5f24 (patch)
tree7f092a987de857a29a37dae62e2428ff56708186 /doc/lispref/control.texi
parent84412f2cbb7f282c15857493602b80f60e562051 (diff)
downloademacs-16152b76a4f0fd82674479b64d923bd86aab5f24.tar.gz
Use Texinfo recommended convention for quotes+punctuation.
Diffstat (limited to 'doc/lispref/control.texi')
-rw-r--r--doc/lispref/control.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi
index 8c45a1a4faf..f8f9ddfa2e8 100644
--- a/doc/lispref/control.texi
+++ b/doc/lispref/control.texi
@@ -221,7 +221,7 @@ non-@code{nil}, the clause ``succeeds''; then @code{cond} evaluates its
@var{body-forms}, and the value of the last of @var{body-forms} becomes
the value of the @code{cond}. The remaining clauses are ignored.
-If the value of @var{condition} is @code{nil}, the clause ``fails,'' so
+If the value of @var{condition} is @code{nil}, the clause ``fails'', so
the @code{cond} moves on to the following clause, trying its
@var{condition}.
@@ -623,7 +623,7 @@ error is signaled with data @code{(@var{tag} @var{value})}.
@subsection Examples of @code{catch} and @code{throw}
One way to use @code{catch} and @code{throw} is to exit from a doubly
-nested loop. (In most languages, this would be done with a ``goto.'')
+nested loop. (In most languages, this would be done with a ``goto''.)
Here we compute @code{(foo @var{i} @var{j})} for @var{i} and @var{j}
varying from 0 to 9: