diff options
| author | Glenn Morris | 2013-01-02 18:23:39 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-01-02 18:23:39 -0800 |
| commit | 75e78d1e904bde7eae13b78202f99081543701dc (patch) | |
| tree | 7b1455321c79b24abb1db4a2d72a74ee02132936 /doc | |
| parent | 5f1a964798c24580cac84995b3ad0adca5a2cb8e (diff) | |
| download | emacs-75e78d1e904bde7eae13b78202f99081543701dc.tar.gz emacs-75e78d1e904bde7eae13b78202f99081543701dc.zip | |
Tweak some lispref line breaks
* doc/lispref/processes.texi (System Processes):
* doc/lispref/syntax.texi (Syntax Table Functions):
Tweak some line breaks.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 3 | ||||
| -rw-r--r-- | doc/lispref/processes.texi | 8 | ||||
| -rw-r--r-- | doc/lispref/syntax.texi | 12 |
3 files changed, 13 insertions, 10 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index fb4c0119b51..400290394ba 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2013-01-03 Glenn Morris <rgm@gnu.org> | 1 | 2013-01-03 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * processes.texi (System Processes): | ||
| 4 | * syntax.texi (Syntax Table Functions): Tweak some line breaks. | ||
| 5 | |||
| 3 | * searching.texi (Replacing Match): Fix xref. | 6 | * searching.texi (Replacing Match): Fix xref. |
| 4 | 7 | ||
| 5 | * elisp.texi (DATE): Bump to Jan 2013. | 8 | * elisp.texi (DATE): Bump to Jan 2013. |
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index a5a0ec62beb..50710e23234 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -1804,12 +1804,12 @@ The number of threads in the process. | |||
| 1804 | 1804 | ||
| 1805 | @item start | 1805 | @item start |
| 1806 | The time when the process was started, in the same | 1806 | The time when the process was started, in the same |
| 1807 | @w{@code{(@var{high} @var{low} @var{microsec} @var{picosec})}} format used by | 1807 | @code{(@var{high} @var{low} @var{microsec} @var{picosec})} format used by |
| 1808 | @code{current-time} and by @code{file-attributes}. | 1808 | @code{file-attributes} and @code{current-time}. |
| 1809 | 1809 | ||
| 1810 | @item etime | 1810 | @item etime |
| 1811 | The time elapsed since the process started, in the @w{@code{(@var{high} | 1811 | The time elapsed since the process started, in the format @code{(@var{high} |
| 1812 | @var{low} @var{microsec} @var{picosec})}} format. | 1812 | @var{low} @var{microsec} @var{picosec})}. |
| 1813 | 1813 | ||
| 1814 | @item vsize | 1814 | @item vsize |
| 1815 | The virtual memory size of the process, measured in kilobytes. | 1815 | The virtual memory size of the process, measured in kilobytes. |
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi index a07f45c100b..dfa121103bc 100644 --- a/doc/lispref/syntax.texi +++ b/doc/lispref/syntax.texi | |||
| @@ -478,17 +478,17 @@ it easier to see the character returned by @code{char-syntax}.) | |||
| 478 | @end group | 478 | @end group |
| 479 | 479 | ||
| 480 | @group | 480 | @group |
| 481 | ;; Forward slash characters have punctuation syntax. Note that this | 481 | ;; Forward slash characters have punctuation syntax. |
| 482 | ;; @code{char-syntax} call does not reveal that it is also part of | 482 | ;; Note that this @code{char-syntax} call does not reveal |
| 483 | ;; comment-start and -end sequences. | 483 | ;; that it is also part of comment-start and -end sequences. |
| 484 | (string (char-syntax ?/)) | 484 | (string (char-syntax ?/)) |
| 485 | @result{} "." | 485 | @result{} "." |
| 486 | @end group | 486 | @end group |
| 487 | 487 | ||
| 488 | @group | 488 | @group |
| 489 | ;; Open parenthesis characters have open parenthesis syntax. Note | 489 | ;; Open parenthesis characters have open parenthesis syntax. |
| 490 | ;; that this @code{char-syntax} call does not reveal that it has a | 490 | ;; Note that this @code{char-syntax} call does not reveal that |
| 491 | ;; matching character, @samp{)}. | 491 | ;; it has a matching character, @samp{)}. |
| 492 | (string (char-syntax ?\()) | 492 | (string (char-syntax ?\()) |
| 493 | @result{} "(" | 493 | @result{} "(" |
| 494 | @end group | 494 | @end group |