aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/objects.texi
diff options
context:
space:
mode:
authorPaul Eggert2015-04-10 11:27:21 -0700
committerPaul Eggert2015-04-10 11:28:52 -0700
commita2940cd43e7931d16d3a3ce2cf5d4acd148dd00c (patch)
treed0345ac3f2d34ee9e734a8824691c1dcadf287e5 /doc/lispref/objects.texi
parentca401f6fdc512f79d6015c1759a0e8e0c3de5c9a (diff)
downloademacs-a2940cd43e7931d16d3a3ce2cf5d4acd148dd00c.tar.gz
emacs-a2940cd43e7931d16d3a3ce2cf5d4acd148dd00c.zip
Minor quoting etc. fixes to lispref manual
* doc/lispref/tips.texi (Documentation Tips): Distinguish more clearly among grave accent, apostrophe, and single quote. * doc/lispref/README, doc/lispref/buffers.texi: * doc/lispref/commands.texi, doc/lispref/control.texi: * doc/lispref/customize.texi, doc/lispref/display.texi: * doc/lispref/elisp.texi, doc/lispref/files.texi: * doc/lispref/frames.texi, doc/lispref/hash.texi: * doc/lispref/help.texi, doc/lispref/internals.texi: * doc/lispref/loading.texi, doc/lispref/makefile.w32-in: * doc/lispref/markers.texi, doc/lispref/modes.texi: * doc/lispref/nonascii.texi, doc/lispref/objects.texi: * doc/lispref/os.texi, doc/lispref/positions.texi: * doc/lispref/strings.texi, doc/lispref/syntax.texi: * doc/lispref/text.texi, doc/lispref/tips.texi: * doc/lispref/two-volume-cross-refs.txt, doc/lispref/windows.texi: Use American-style double quoting in ordinary text, and quote 'like this' when single-quoting in ASCII text. Also, fix some minor spacing issues.
Diffstat (limited to 'doc/lispref/objects.texi')
-rw-r--r--doc/lispref/objects.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi
index f4beca822cd..c7d71d2aba9 100644
--- a/doc/lispref/objects.texi
+++ b/doc/lispref/objects.texi
@@ -595,8 +595,8 @@ FOO ; @r{A symbol named @samp{FOO}, different from @samp{foo}.}
595 595
596@cindex @samp{##} read syntax 596@cindex @samp{##} read syntax
597@ifinfo 597@ifinfo
598@c This uses ``colon'' instead of a literal `:' because Info cannot 598@c This uses "colon" instead of a literal ':' because Info cannot
599@c cope with a `:' in a menu 599@c cope with a ':' in a menu.
600@cindex @samp{#@var{colon}} read syntax 600@cindex @samp{#@var{colon}} read syntax
601@end ifinfo 601@end ifinfo
602@ifnotinfo 602@ifnotinfo
@@ -999,7 +999,7 @@ of a string returns the same string.
999 The read syntax for a string is a double-quote, an arbitrary number 999 The read syntax for a string is a double-quote, an arbitrary number
1000of characters, and another double-quote, @code{"like this"}. To 1000of characters, and another double-quote, @code{"like this"}. To
1001include a double-quote in a string, precede it with a backslash; thus, 1001include a double-quote in a string, precede it with a backslash; thus,
1002@code{"\""} is a string containing just a single double-quote 1002@code{"\""} is a string containing just one double-quote
1003character. Likewise, you can include a backslash by preceding it with 1003character. Likewise, you can include a backslash by preceding it with
1004another backslash, like this: @code{"this \\ is a single embedded 1004another backslash, like this: @code{"this \\ is a single embedded
1005backslash"}. 1005backslash"}.