aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorJoakim Verona2012-12-22 20:17:08 +0100
committerJoakim Verona2012-12-22 20:17:08 +0100
commita26b09f270e438e5ecfdce7bf9f424e5b7ec0766 (patch)
treea2ba7ad3bb597144adedc70f7f0c8d6999dd2fe7 /doc/lispref
parentcc590e378e07c7eb84bb5d577b06b4d9a0177272 (diff)
parent00afe3a454119390e78eaaa319a7d05e5e7723ae (diff)
downloademacs-a26b09f270e438e5ecfdce7bf9f424e5b7ec0766.tar.gz
emacs-a26b09f270e438e5ecfdce7bf9f424e5b7ec0766.zip
auto upstream
Diffstat (limited to 'doc/lispref')
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/buffers.texi2
-rw-r--r--doc/lispref/commands.texi2
-rw-r--r--doc/lispref/elisp.texi2
-rw-r--r--doc/lispref/numbers.texi2
-rw-r--r--doc/lispref/objects.texi2
-rw-r--r--doc/lispref/os.texi26
-rw-r--r--doc/lispref/windows.texi24
8 files changed, 36 insertions, 29 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index d3182e9bf37..b5ad25377a0 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12012-12-22 Martin Rudalics <rudalics@gmx.at>
2
3 * windows.texi (Selecting Windows): Reword description of
4 select-window (Bug#13248).
5
12012-12-22 Eli Zaretskii <eliz@gnu.org> 62012-12-22 Eli Zaretskii <eliz@gnu.org>
2 7
3 * files.texi (File Attributes, Changing Files): Remove the details 8 * files.texi (File Attributes, Changing Files): Remove the details
diff --git a/doc/lispref/buffers.texi b/doc/lispref/buffers.texi
index 6462788b34e..6e337af6be0 100644
--- a/doc/lispref/buffers.texi
+++ b/doc/lispref/buffers.texi
@@ -650,7 +650,7 @@ the last modification time of that directory, as recorded by Dired.
650For a new buffer visiting a not yet existing file, @var{high} is 650For a new buffer visiting a not yet existing file, @var{high} is
651@minus{}1 and @var{low} is 65535, that is, 651@minus{}1 and @var{low} is 65535, that is,
652@ifnottex 652@ifnottex
653@w{2**16 - 1.} 653@w{2**16 @minus{} 1.}
654@end ifnottex 654@end ifnottex
655@tex 655@tex
656@math{2^{16}-1}. 656@math{2^{16}-1}.
diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi
index f3b216e9353..10007c8a9ce 100644
--- a/doc/lispref/commands.texi
+++ b/doc/lispref/commands.texi
@@ -2660,7 +2660,7 @@ The command @code{quoted-insert} uses this function.
2660@cindex control characters, reading 2660@cindex control characters, reading
2661@cindex nonprinting characters, reading 2661@cindex nonprinting characters, reading
2662This function is like @code{read-char}, except that if the first 2662This function is like @code{read-char}, except that if the first
2663character read is an octal digit (0-7), it reads any number of octal 2663character read is an octal digit (0--7), it reads any number of octal
2664digits (but stopping if a non-octal digit is found), and returns the 2664digits (but stopping if a non-octal digit is found), and returns the
2665character represented by that numeric character code. If the 2665character represented by that numeric character code. If the
2666character that terminates the sequence of octal digits is @key{RET}, 2666character that terminates the sequence of octal digits is @key{RET},
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi
index 3980f7ac868..6f2700b28dd 100644
--- a/doc/lispref/elisp.texi
+++ b/doc/lispref/elisp.texi
@@ -98,7 +98,7 @@ This is the @cite{GNU Emacs Lisp Reference Manual}
98@end ifnottex 98@end ifnottex
99corresponding to Emacs version @value{EMACSVER}. 99corresponding to Emacs version @value{EMACSVER}.
100 100
101Copyright @copyright{} 1990-1996, 1998-2012 Free Software Foundation, Inc. 101Copyright @copyright{} 1990--1996, 1998--2012 Free Software Foundation, Inc.
102 102
103@quotation 103@quotation
104Permission is granted to copy, distribute and/or modify this document 104Permission is granted to copy, distribute and/or modify this document
diff --git a/doc/lispref/numbers.texi b/doc/lispref/numbers.texi
index 66b1f081df4..78a3a2b4cb4 100644
--- a/doc/lispref/numbers.texi
+++ b/doc/lispref/numbers.texi
@@ -43,7 +43,7 @@ minimum range is @minus{}536870912 to 536870911 (30 bits; i.e.,
43@end tex 43@end tex
44to 44to
45@ifnottex 45@ifnottex
462**29 - 1), 462**29 @minus{} 1),
47@end ifnottex 47@end ifnottex
48@tex 48@tex
49@math{2^{29}-1}), 49@math{2^{29}-1}),
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi
index 85d7a3f4600..8c9bb26c89f 100644
--- a/doc/lispref/objects.texi
+++ b/doc/lispref/objects.texi
@@ -171,7 +171,7 @@ latter are unique to Emacs Lisp.
171@end tex 171@end tex
172to 172to
173@ifnottex 173@ifnottex
1742**29 - 1) 1742**29 @minus{} 1)
175@end ifnottex 175@end ifnottex
176@tex 176@tex
177@math{2^{29}-1}) 177@math{2^{29}-1})
diff --git a/doc/lispref/os.texi b/doc/lispref/os.texi
index 4b9cdfaae9e..e5132c46425 100644
--- a/doc/lispref/os.texi
+++ b/doc/lispref/os.texi
@@ -1421,23 +1421,23 @@ This stands for the day of month, blank-padded.
1421@item %h 1421@item %h
1422This is a synonym for @samp{%b}. 1422This is a synonym for @samp{%b}.
1423@item %H 1423@item %H
1424This stands for the hour (00-23). 1424This stands for the hour (00--23).
1425@item %I 1425@item %I
1426This stands for the hour (01-12). 1426This stands for the hour (01--12).
1427@item %j 1427@item %j
1428This stands for the day of the year (001-366). 1428This stands for the day of the year (001--366).
1429@item %k 1429@item %k
1430This stands for the hour (0-23), blank padded. 1430This stands for the hour (0--23), blank padded.
1431@item %l 1431@item %l
1432This stands for the hour (1-12), blank padded. 1432This stands for the hour (1--12), blank padded.
1433@item %m 1433@item %m
1434This stands for the month (01-12). 1434This stands for the month (01--12).
1435@item %M 1435@item %M
1436This stands for the minute (00-59). 1436This stands for the minute (00--59).
1437@item %n 1437@item %n
1438This stands for a newline. 1438This stands for a newline.
1439@item %N 1439@item %N
1440This stands for the nanoseconds (000000000-999999999). To ask for 1440This stands for the nanoseconds (000000000--999999999). To ask for
1441fewer digits, use @samp{%3N} for milliseconds, @samp{%6N} for 1441fewer digits, use @samp{%3N} for milliseconds, @samp{%6N} for
1442microseconds, etc. Any excess digits are discarded, without rounding. 1442microseconds, etc. Any excess digits are discarded, without rounding.
1443@item %p 1443@item %p
@@ -1447,18 +1447,18 @@ This is a synonym for @samp{%I:%M:%S %p}.
1447@item %R 1447@item %R
1448This is a synonym for @samp{%H:%M}. 1448This is a synonym for @samp{%H:%M}.
1449@item %S 1449@item %S
1450This stands for the seconds (00-59). 1450This stands for the seconds (00--59).
1451@item %t 1451@item %t
1452This stands for a tab character. 1452This stands for a tab character.
1453@item %T 1453@item %T
1454This is a synonym for @samp{%H:%M:%S}. 1454This is a synonym for @samp{%H:%M:%S}.
1455@item %U 1455@item %U
1456This stands for the week of the year (01-52), assuming that weeks 1456This stands for the week of the year (01--52), assuming that weeks
1457start on Sunday. 1457start on Sunday.
1458@item %w 1458@item %w
1459This stands for the numeric day of week (0-6). Sunday is day 0. 1459This stands for the numeric day of week (0--6). Sunday is day 0.
1460@item %W 1460@item %W
1461This stands for the week of the year (01-52), assuming that weeks 1461This stands for the week of the year (01--52), assuming that weeks
1462start on Monday. 1462start on Monday.
1463@item %x 1463@item %x
1464This has a locale-specific meaning. In the default locale (named 1464This has a locale-specific meaning. In the default locale (named
@@ -1467,7 +1467,7 @@ This has a locale-specific meaning. In the default locale (named
1467This has a locale-specific meaning. In the default locale (named 1467This has a locale-specific meaning. In the default locale (named
1468@samp{C}), it is equivalent to @samp{%T}. 1468@samp{C}), it is equivalent to @samp{%T}.
1469@item %y 1469@item %y
1470This stands for the year without century (00-99). 1470This stands for the year without century (00--99).
1471@item %Y 1471@item %Y
1472This stands for the year with century. 1472This stands for the year with century.
1473@item %Z 1473@item %Z
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi
index 7a705353a1e..f4c55054449 100644
--- a/doc/lispref/windows.texi
+++ b/doc/lispref/windows.texi
@@ -1296,10 +1296,12 @@ windows.
1296@cindex selecting a window 1296@cindex selecting a window
1297 1297
1298@defun select-window window &optional norecord 1298@defun select-window window &optional norecord
1299This function makes @var{window} the selected window, as well as the 1299This function makes @var{window} the selected window and the window
1300window selected within its frame (@pxref{Basic Windows}). @var{window} 1300selected within its frame (@pxref{Basic Windows}) and selects that
1301must be a live window. This function makes also @var{window}'s buffer 1301frame. @var{window} must be a live window. This function also makes
1302current (@pxref{Buffers and Windows}). The return value is 1302@var{window}'s buffer (@pxref{Buffers and Windows}) current and sets
1303that buffer's value of @code{point} to the value of @code{window-point}
1304(@pxref{Window Point}) in @var{window}. The return value is
1303@var{window}. 1305@var{window}.
1304 1306
1305By default, this function also moves @var{window}'s buffer to the front 1307By default, this function also moves @var{window}'s buffer to the front
@@ -1865,7 +1867,7 @@ default value is empty, i.e., @code{(nil . nil)}.
1865@defopt display-buffer-alist 1867@defopt display-buffer-alist
1866The value of this option is an alist mapping conditions to display 1868The value of this option is an alist mapping conditions to display
1867actions. Each condition may be either a regular expression matching a 1869actions. Each condition may be either a regular expression matching a
1868buffer name or a function that takes two arguments - a buffer name and 1870buffer name or a function that takes two arguments: a buffer name and
1869the @var{action} argument passed to @code{display-buffer}. If the name 1871the @var{action} argument passed to @code{display-buffer}. If the name
1870of the buffer passed to @code{display-buffer} either matches a regular 1872of the buffer passed to @code{display-buffer} either matches a regular
1871expression in this alist or the function specified by a condition 1873expression in this alist or the function specified by a condition
@@ -1966,7 +1968,7 @@ height of the frame's root window.
1966 1968
1967@item 1969@item
1968If the @sc{cdr} specifies a function, that function is called with one 1970If the @sc{cdr} specifies a function, that function is called with one
1969argument - the new window. The function is supposed to adjust the 1971argument: the new window. The function is supposed to adjust the
1970height of the window; its return value is ignored. Suitable functions 1972height of the window; its return value is ignored. Suitable functions
1971are @code{shrink-window-if-larger-than-buffer} and 1973are @code{shrink-window-if-larger-than-buffer} and
1972@code{fit-window-to-buffer}, see @ref{Resizing Windows}. 1974@code{fit-window-to-buffer}, see @ref{Resizing Windows}.
@@ -1987,7 +1989,7 @@ width of the frame's root window.
1987 1989
1988@item 1990@item
1989If the @sc{cdr} specifies a function, that function is called with one 1991If the @sc{cdr} specifies a function, that function is called with one
1990argument - the new window. The function is supposed to adjust the width 1992argument: the new window. The function is supposed to adjust the width
1991of the window; its return value is ignored. 1993of the window; its return value is ignored.
1992@end itemize 1994@end itemize
1993 1995
@@ -3616,10 +3618,10 @@ This parameter is installed by the buffer display functions
3616(@pxref{Choosing Window}) and consulted by @code{quit-restore-window} 3618(@pxref{Choosing Window}) and consulted by @code{quit-restore-window}
3617(@pxref{Quitting Windows}). It contains four elements: 3619(@pxref{Quitting Windows}). It contains four elements:
3618 3620
3619The first element is one of the symbols @code{window} - meaning that the 3621The first element is one of the symbols @code{window}, meaning that the
3620window has been specially created by @code{display-buffer}, @code{frame} 3622window has been specially created by @code{display-buffer}; @code{frame},
3621- a separate frame has been created, @code{same} - the window has 3623a separate frame has been created; @code{same}, the window has
3622displayed the same buffer before, or @code{other} - the window showed 3624displayed the same buffer before; or @code{other}, the window showed
3623another buffer before. 3625another buffer before.
3624 3626
3625The second element is either one of the symbols @code{window} or 3627The second element is either one of the symbols @code{window} or