]> code.delx.au - gnu-emacs/commitdiff
Tweak some lispref line breaks
authorGlenn Morris <rgm@gnu.org>
Thu, 3 Jan 2013 02:23:39 +0000 (18:23 -0800)
committerGlenn Morris <rgm@gnu.org>
Thu, 3 Jan 2013 02:23:39 +0000 (18:23 -0800)
* doc/lispref/processes.texi (System Processes):
* doc/lispref/syntax.texi (Syntax Table Functions):
Tweak some line breaks.

doc/lispref/ChangeLog
doc/lispref/processes.texi
doc/lispref/syntax.texi

index fb4c0119b513885d7004e32901ed61a35c3252c7..400290394ba9bca84fa22f160f4f5c8692c5ba03 100644 (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.
index a5a0ec62beb6007622b9d661bdf1b6c8b0f7336e..50710e23234f1491c20b7066fd98cc19aff014d0 100644 (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.
index a07f45c100b535da3df744b38fb404e8eb2c3f5b..dfa121103bcaa892fb547b848a05534edf831d2d 100644 (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