aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorGlenn Morris2013-01-02 18:37:57 -0800
committerGlenn Morris2013-01-02 18:37:57 -0800
commit0a8bf3afca415fec94742cf830622b22f186062c (patch)
tree7ca943a0622ea184e1a9dc97d31509d063e138b5 /doc/lispref
parent2036b4b8e075479ea5333689e299183b9c2f3ebb (diff)
parent75e78d1e904bde7eae13b78202f99081543701dc (diff)
downloademacs-0a8bf3afca415fec94742cf830622b22f186062c.tar.gz
emacs-0a8bf3afca415fec94742cf830622b22f186062c.zip
Merge from emacs-24; up to 2012-12-06T07:33:20Z!rgm@gnu.org
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/ChangeLog9
-rw-r--r--doc/lispref/elisp.texi2
-rw-r--r--doc/lispref/processes.texi8
-rw-r--r--doc/lispref/searching.texi2
-rw-r--r--doc/lispref/syntax.texi12
5 files changed, 21 insertions, 12 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index b837525fb42..4815ac2a482 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,12 @@
12013-01-03 Glenn Morris <rgm@gnu.org>
2
3 * processes.texi (System Processes):
4 * syntax.texi (Syntax Table Functions): Tweak some line breaks.
5
6 * searching.texi (Replacing Match): Fix xref.
7
8 * elisp.texi (DATE): Bump to Jan 2013.
9
12013-01-02 Glenn Morris <rgm@gnu.org> 102013-01-02 Glenn Morris <rgm@gnu.org>
2 11
3 * customize.texi (Common Keywords, Type Keywords): 12 * customize.texi (Common Keywords, Type Keywords):
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi
index 354591c1915..127b22086d0 100644
--- a/doc/lispref/elisp.texi
+++ b/doc/lispref/elisp.texi
@@ -56,7 +56,7 @@
56@c (See comments for EDITION in emacs.texi) 56@c (See comments for EDITION in emacs.texi)
57@set VERSION 3.1 57@set VERSION 3.1
58@include emacsver.texi 58@include emacsver.texi
59@set DATE May 2012 59@set DATE January 2013
60 60
61@c in general, keep the following line commented out, unless doing a 61@c in general, keep the following line commented out, unless doing a
62@c copy of this manual that will be published. The manual should go 62@c copy of this manual that will be published. The manual should go
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
1806The time when the process was started, in the same 1806The 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
1811The time elapsed since the process started, in the @w{@code{(@var{high} 1811The 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
1815The virtual memory size of the process, measured in kilobytes. 1815The virtual memory size of the process, measured in kilobytes.
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi
index 1573cceaed6..87d4051d6f0 100644
--- a/doc/lispref/searching.texi
+++ b/doc/lispref/searching.texi
@@ -1325,7 +1325,7 @@ This stands for a single @samp{\} in the replacement text.
1325 1325
1326@item @samp{\?} 1326@item @samp{\?}
1327This stands for itself (for compatibility with @code{replace-regexp} 1327This stands for itself (for compatibility with @code{replace-regexp}
1328and related commands; @pxref{Regexp Replacement,,, emacs, The GNU 1328and related commands; @pxref{Regexp Replace,,, emacs, The GNU
1329Emacs Manual}). 1329Emacs Manual}).
1330@end table 1330@end table
1331 1331
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