Tweak some lispref line breaks

* doc/lispref/processes.texi (System Processes):
* doc/lispref/syntax.texi (Syntax Table Functions):
Tweak some line breaks.
This commit is contained in:
Glenn Morris 2013-01-02 18:23:39 -08:00
parent 5f1a964798
commit 75e78d1e90
3 changed files with 13 additions and 10 deletions

View file

@ -1,5 +1,8 @@
2013-01-03 Glenn Morris <rgm@gnu.org>
* processes.texi (System Processes):
* syntax.texi (Syntax Table Functions): Tweak some line breaks.
* searching.texi (Replacing Match): Fix xref.
* elisp.texi (DATE): Bump to Jan 2013.

View file

@ -1804,12 +1804,12 @@ The number of threads in the process.
@item start
The time when the process was started, in the same
@w{@code{(@var{high} @var{low} @var{microsec} @var{picosec})}} format used by
@code{current-time} and by @code{file-attributes}.
@code{(@var{high} @var{low} @var{microsec} @var{picosec})} format used by
@code{file-attributes} and @code{current-time}.
@item etime
The time elapsed since the process started, in the @w{@code{(@var{high}
@var{low} @var{microsec} @var{picosec})}} format.
The time elapsed since the process started, in the format @code{(@var{high}
@var{low} @var{microsec} @var{picosec})}.
@item vsize
The virtual memory size of the process, measured in kilobytes.

View file

@ -478,17 +478,17 @@ it easier to see the character returned by @code{char-syntax}.)
@end group
@group
;; Forward slash characters have punctuation syntax. Note that this
;; @code{char-syntax} call does not reveal that it is also part of
;; comment-start and -end sequences.
;; Forward slash characters have punctuation syntax.
;; Note that this @code{char-syntax} call does not reveal
;; that it is also part of comment-start and -end sequences.
(string (char-syntax ?/))
@result{} "."
@end group
@group
;; Open parenthesis characters have open parenthesis syntax. Note
;; that this @code{char-syntax} call does not reveal that it has a
;; matching character, @samp{)}.
;; Open parenthesis characters have open parenthesis syntax.
;; Note that this @code{char-syntax} call does not reveal that
;; it has a matching character, @samp{)}.
(string (char-syntax ?\())
@result{} "("
@end group