summaryrefslogtreecommitdiff
path: root/doc/lispref/compile.texi
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-12-05 14:27:56 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2012-12-05 14:27:56 -0800
commit1df7defd8040839a81909b0eb8f428f6158b2362 (patch)
tree552c1d92968fa9e15dafeaaec8649b1befba664b /doc/lispref/compile.texi
parent7c2fcf9bad2bed6c0198875384dc2bdb7cbd7e99 (diff)
downloademacs-1df7defd8040839a81909b0eb8f428f6158b2362.tar.gz
Fix minor whitespace issues after "." in manual.
Be more systematic about using "@." (not ".") at end of sentence that ends in a capital letter, and about appending "@:" after non-ends of sentences that end in a lower case letter followed by "." followed by whitespace. Omit unnecessary use of "@:" and "@.". Similarly for "?" and "!". Be more consistent about putting a comma after "i.e." and "e.g."; this is the typical American style and it's easier to code in Texinfo. Fixes: debbugs:12973
Diffstat (limited to 'doc/lispref/compile.texi')
-rw-r--r--doc/lispref/compile.texi5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/lispref/compile.texi b/doc/lispref/compile.texi
index f088934f5f1..7d5f3fcf7c5 100644
--- a/doc/lispref/compile.texi
+++ b/doc/lispref/compile.texi
@@ -657,7 +657,7 @@ Lisp source; these do not appear in the output of @code{disassemble}.
11 sub1 ; @r{Pop @code{integer}, decrement value,}
; @r{push new value onto stack.}
12 call 1 ; @r{Call function @code{factorial} using first}
- ; @r{(i.e. top) stack element as argument;}
+ ; @r{(i.e., top) stack element as argument;}
; @r{push returned value onto stack.}
@end group
@group
@@ -704,7 +704,7 @@ The @code{silly-loop} function is somewhat more complex:
4 sub1 ; @r{Subtract 1 from top of stack.}
@end group
@group
-5 dup ; @r{Duplicate top of stack; i.e. copy the top}
+5 dup ; @r{Duplicate top of stack; i.e., copy the top}
; @r{of the stack and push copy onto stack.}
6 varset n ; @r{Pop the top of the stack,}
; @r{and bind @code{n} to the value.}
@@ -737,4 +737,3 @@ The @code{silly-loop} function is somewhat more complex:
17 return ; @r{Return value of the top of stack.}
@end group
@end example
-