aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorPaul Eggert2012-12-22 08:25:40 -0800
committerPaul Eggert2012-12-22 08:25:40 -0800
commitf99f164170af8b7ee84bb229da6ec17b1df7c7bd (patch)
tree46c1c5edd4fab11f4cafc4d9200d1a125b941060 /doc/lispref
parentf109a67ecb16c7698539b4fd92c113257e282d53 (diff)
downloademacs-f99f164170af8b7ee84bb229da6ec17b1df7c7bd.tar.gz
emacs-f99f164170af8b7ee84bb229da6ec17b1df7c7bd.zip
Hyphen and dash fixes in texinfo files.
Diffstat (limited to 'doc/lispref')
-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.texi14
7 files changed, 25 insertions, 25 deletions
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 b2b73b380b4..b51b13f33e4 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 64bda1067ec..e5e4fdd4248 100644
--- a/doc/lispref/os.texi
+++ b/doc/lispref/os.texi
@@ -1411,23 +1411,23 @@ This stands for the day of month, blank-padded.
1411@item %h 1411@item %h
1412This is a synonym for @samp{%b}. 1412This is a synonym for @samp{%b}.
1413@item %H 1413@item %H
1414This stands for the hour (00-23). 1414This stands for the hour (00--23).
1415@item %I 1415@item %I
1416This stands for the hour (01-12). 1416This stands for the hour (01--12).
1417@item %j 1417@item %j
1418This stands for the day of the year (001-366). 1418This stands for the day of the year (001--366).
1419@item %k 1419@item %k
1420This stands for the hour (0-23), blank padded. 1420This stands for the hour (0--23), blank padded.
1421@item %l 1421@item %l
1422This stands for the hour (1-12), blank padded. 1422This stands for the hour (1--12), blank padded.
1423@item %m 1423@item %m
1424This stands for the month (01-12). 1424This stands for the month (01--12).
1425@item %M 1425@item %M
1426This stands for the minute (00-59). 1426This stands for the minute (00--59).
1427@item %n 1427@item %n
1428This stands for a newline. 1428This stands for a newline.
1429@item %N 1429@item %N
1430This stands for the nanoseconds (000000000-999999999). To ask for 1430This stands for the nanoseconds (000000000--999999999). To ask for
1431fewer digits, use @samp{%3N} for milliseconds, @samp{%6N} for 1431fewer digits, use @samp{%3N} for milliseconds, @samp{%6N} for
1432microseconds, etc. Any excess digits are discarded, without rounding. 1432microseconds, etc. Any excess digits are discarded, without rounding.
1433@item %p 1433@item %p
@@ -1437,18 +1437,18 @@ This is a synonym for @samp{%I:%M:%S %p}.
1437@item %R 1437@item %R
1438This is a synonym for @samp{%H:%M}. 1438This is a synonym for @samp{%H:%M}.
1439@item %S 1439@item %S
1440This stands for the seconds (00-59). 1440This stands for the seconds (00--59).
1441@item %t 1441@item %t
1442This stands for a tab character. 1442This stands for a tab character.
1443@item %T 1443@item %T
1444This is a synonym for @samp{%H:%M:%S}. 1444This is a synonym for @samp{%H:%M:%S}.
1445@item %U 1445@item %U
1446This stands for the week of the year (01-52), assuming that weeks 1446This stands for the week of the year (01--52), assuming that weeks
1447start on Sunday. 1447start on Sunday.
1448@item %w 1448@item %w
1449This stands for the numeric day of week (0-6). Sunday is day 0. 1449This stands for the numeric day of week (0--6). Sunday is day 0.
1450@item %W 1450@item %W
1451This stands for the week of the year (01-52), assuming that weeks 1451This stands for the week of the year (01--52), assuming that weeks
1452start on Monday. 1452start on Monday.
1453@item %x 1453@item %x
1454This has a locale-specific meaning. In the default locale (named 1454This has a locale-specific meaning. In the default locale (named
@@ -1457,7 +1457,7 @@ This has a locale-specific meaning. In the default locale (named
1457This has a locale-specific meaning. In the default locale (named 1457This has a locale-specific meaning. In the default locale (named
1458@samp{C}), it is equivalent to @samp{%T}. 1458@samp{C}), it is equivalent to @samp{%T}.
1459@item %y 1459@item %y
1460This stands for the year without century (00-99). 1460This stands for the year without century (00--99).
1461@item %Y 1461@item %Y
1462This stands for the year with century. 1462This stands for the year with century.
1463@item %Z 1463@item %Z
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi
index 44d6af6eb52..c4a59c0777a 100644
--- a/doc/lispref/windows.texi
+++ b/doc/lispref/windows.texi
@@ -1867,7 +1867,7 @@ default value is empty, i.e., @code{(nil . nil)}.
1867@defopt display-buffer-alist 1867@defopt display-buffer-alist
1868The value of this option is an alist mapping conditions to display 1868The value of this option is an alist mapping conditions to display
1869actions. Each condition may be either a regular expression matching a 1869actions. Each condition may be either a regular expression matching a
1870buffer 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
1871the @var{action} argument passed to @code{display-buffer}. If the name 1871the @var{action} argument passed to @code{display-buffer}. If the name
1872of the buffer passed to @code{display-buffer} either matches a regular 1872of the buffer passed to @code{display-buffer} either matches a regular
1873expression in this alist or the function specified by a condition 1873expression in this alist or the function specified by a condition
@@ -1968,7 +1968,7 @@ height of the frame's root window.
1968 1968
1969@item 1969@item
1970If 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
1971argument - the new window. The function is supposed to adjust the 1971argument: the new window. The function is supposed to adjust the
1972height of the window; its return value is ignored. Suitable functions 1972height of the window; its return value is ignored. Suitable functions
1973are @code{shrink-window-if-larger-than-buffer} and 1973are @code{shrink-window-if-larger-than-buffer} and
1974@code{fit-window-to-buffer}, see @ref{Resizing Windows}. 1974@code{fit-window-to-buffer}, see @ref{Resizing Windows}.
@@ -1989,7 +1989,7 @@ width of the frame's root window.
1989 1989
1990@item 1990@item
1991If 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
1992argument - the new window. The function is supposed to adjust the width 1992argument: the new window. The function is supposed to adjust the width
1993of the window; its return value is ignored. 1993of the window; its return value is ignored.
1994@end itemize 1994@end itemize
1995 1995
@@ -3618,10 +3618,10 @@ This parameter is installed by the buffer display functions
3618(@pxref{Choosing Window}) and consulted by @code{quit-restore-window} 3618(@pxref{Choosing Window}) and consulted by @code{quit-restore-window}
3619(@pxref{Quitting Windows}). It contains four elements: 3619(@pxref{Quitting Windows}). It contains four elements:
3620 3620
3621The 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
3622window has been specially created by @code{display-buffer}, @code{frame} 3622window has been specially created by @code{display-buffer}; @code{frame},
3623- a separate frame has been created, @code{same} - the window has 3623a separate frame has been created; @code{same}, the window has
3624displayed the same buffer before, or @code{other} - the window showed 3624displayed the same buffer before; or @code{other}, the window showed
3625another buffer before. 3625another buffer before.
3626 3626
3627The second element is either one of the symbols @code{window} or 3627The second element is either one of the symbols @code{window} or