aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1999-08-30 18:58:31 +0000
committerKarl Heuer1999-08-30 18:58:31 +0000
commit15da78536bb69e74946c09c560df969f6d145ae6 (patch)
treea61f6699780822cc3602f031c8e2d3e5ba552f5b
parent9ee9af7aa2044c456e493eddfe082bba4206f976 (diff)
downloademacs-15da78536bb69e74946c09c560df969f6d145ae6.tar.gz
emacs-15da78536bb69e74946c09c560df969f6d145ae6.zip
*** empty log message ***
-rw-r--r--lispref/display.texi2
-rw-r--r--lispref/numbers.texi42
-rw-r--r--lispref/os.texi2
-rw-r--r--lispref/positions.texi2
-rw-r--r--lispref/strings.texi4
-rw-r--r--lispref/text.texi2
6 files changed, 43 insertions, 11 deletions
diff --git a/lispref/display.texi b/lispref/display.texi
index 687a206b323..1ada1dbd373 100644
--- a/lispref/display.texi
+++ b/lispref/display.texi
@@ -1475,7 +1475,7 @@ specify the characters for which you want special behavior.
1475 These display rules apply to carriage return (character code 13), when 1475 These display rules apply to carriage return (character code 13), when
1476it appears in the buffer. But that character may not appear in the 1476it appears in the buffer. But that character may not appear in the
1477buffer where you expect it, if it was eliminated as part of end-of-line 1477buffer where you expect it, if it was eliminated as part of end-of-line
1478conversion (@xref{Coding System Basics}). 1478conversion (@pxref{Coding System Basics}).
1479 1479
1480 These variables affect the way certain characters are displayed on the 1480 These variables affect the way certain characters are displayed on the
1481screen. Since they change the number of columns the characters occupy, 1481screen. Since they change the number of columns the characters occupy,
diff --git a/lispref/numbers.texi b/lispref/numbers.texi
index fbbdc83871e..3bba60a7f9f 100644
--- a/lispref/numbers.texi
+++ b/lispref/numbers.texi
@@ -953,20 +953,52 @@ in radians.
953@end defun 953@end defun
954 954
955@defun asin arg 955@defun asin arg
956The value of @code{(asin @var{arg})} is a number between @minus{}pi/2 956The value of @code{(asin @var{arg})} is a number between
957and pi/2 (inclusive) whose sine is @var{arg}; if, however, @var{arg} 957@ifinfo
958@minus{}pi/2
959@end ifinfo
960@tex
961$-\pi/2$
962@end tex
963and
964@ifinfo
965pi/2
966@end ifinfo
967@tex
968$\pi/2$
969@end tex
970(inclusive) whose sine is @var{arg}; if, however, @var{arg}
958is out of range (outside [-1, 1]), then the result is a NaN. 971is out of range (outside [-1, 1]), then the result is a NaN.
959@end defun 972@end defun
960 973
961@defun acos arg 974@defun acos arg
962The value of @code{(acos @var{arg})} is a number between 0 and pi 975The value of @code{(acos @var{arg})} is a number between 0 and
976@ifinfo
977pi
978@end ifinfo
979@tex
980$\pi$
981@end tex
963(inclusive) whose cosine is @var{arg}; if, however, @var{arg} 982(inclusive) whose cosine is @var{arg}; if, however, @var{arg}
964is out of range (outside [-1, 1]), then the result is a NaN. 983is out of range (outside [-1, 1]), then the result is a NaN.
965@end defun 984@end defun
966 985
967@defun atan arg 986@defun atan arg
968The value of @code{(atan @var{arg})} is a number between @minus{}pi/2 987The value of @code{(atan @var{arg})} is a number between
969and pi/2 (exclusive) whose tangent is @var{arg}. 988@ifinfo
989@minus{}pi/2
990@end ifinfo
991@tex
992$-\pi/2$
993@end tex
994and
995@ifinfo
996pi/2
997@end ifinfo
998@tex
999$\pi/2$
1000@end tex
1001(exclusive) whose tangent is @var{arg}.
970@end defun 1002@end defun
971 1003
972@defun exp arg 1004@defun exp arg
diff --git a/lispref/os.texi b/lispref/os.texi
index 4d813a7e258..8f2eff98911 100644
--- a/lispref/os.texi
+++ b/lispref/os.texi
@@ -1388,7 +1388,7 @@ In the example below, we set @code{keyboard-translate-table} to a
1388char-table. Then we fill it in to swap the characters @kbd{C-s} and 1388char-table. Then we fill it in to swap the characters @kbd{C-s} and
1389@kbd{C-\} and the characters @kbd{C-q} and @kbd{C-^}. Subsequently, 1389@kbd{C-\} and the characters @kbd{C-q} and @kbd{C-^}. Subsequently,
1390typing @kbd{C-\} has all the usual effects of typing @kbd{C-s}, and vice 1390typing @kbd{C-\} has all the usual effects of typing @kbd{C-s}, and vice
1391versa. (@xref{Flow Control} for more information on this subject.) 1391versa. (@pxref{Flow Control} for more information on this subject.)
1392 1392
1393@cindex flow control example 1393@cindex flow control example
1394@example 1394@example
diff --git a/lispref/positions.texi b/lispref/positions.texi
index 998dddd4d14..43be1bad65e 100644
--- a/lispref/positions.texi
+++ b/lispref/positions.texi
@@ -81,7 +81,7 @@ is the position of the start of the region that you narrowed to.
81This function returns the maximum accessible value of point in the 81This function returns the maximum accessible value of point in the
82current buffer. This is @code{(1+ (buffer-size))}, unless narrowing is 82current buffer. This is @code{(1+ (buffer-size))}, unless narrowing is
83in effect, in which case it is the position of the end of the region 83in effect, in which case it is the position of the end of the region
84that you narrowed to. (@xref{Narrowing}). 84that you narrowed to. (@pxref{Narrowing}).
85@end defun 85@end defun
86 86
87@defun buffer-end flag 87@defun buffer-end flag
diff --git a/lispref/strings.texi b/lispref/strings.texi
index c443a1df61f..eb7e35293d1 100644
--- a/lispref/strings.texi
+++ b/lispref/strings.texi
@@ -836,7 +836,7 @@ case.
836 836
837The definition of a word is any sequence of consecutive characters that 837The definition of a word is any sequence of consecutive characters that
838are assigned to the word constituent syntax class in the current syntax 838are assigned to the word constituent syntax class in the current syntax
839table (@xref{Syntax Class Table}). 839table (@pxref{Syntax Class Table}).
840 840
841When the argument to @code{capitalize} is a character, @code{capitalize} 841When the argument to @code{capitalize} is a character, @code{capitalize}
842has the same result as @code{upcase}. 842has the same result as @code{upcase}.
@@ -863,7 +863,7 @@ had its initial letter converted to upper case.
863 863
864The definition of a word is any sequence of consecutive characters that 864The definition of a word is any sequence of consecutive characters that
865are assigned to the word constituent syntax class in the current syntax 865are assigned to the word constituent syntax class in the current syntax
866table (@xref{Syntax Class Table}). 866table (@pxref{Syntax Class Table}).
867 867
868@example 868@example
869@group 869@group
diff --git a/lispref/text.texi b/lispref/text.texi
index 5d0651c4a17..840601bc4c8 100644
--- a/lispref/text.texi
+++ b/lispref/text.texi
@@ -1196,7 +1196,7 @@ It uses the ordinary paragraph motion commands to find paragraph
1196boundaries. @xref{Paragraphs,,, emacs, The Emacs Manual}. 1196boundaries. @xref{Paragraphs,,, emacs, The Emacs Manual}.
1197@end deffn 1197@end deffn
1198 1198
1199@deffn Command fill-region start end &optional justify nosqueeze 1199@deffn Command fill-region start end &optional justify nosqueeze to-eop
1200This command fills each of the paragraphs in the region from @var{start} 1200This command fills each of the paragraphs in the region from @var{start}
1201to @var{end}. It justifies as well if @var{justify} is 1201to @var{end}. It justifies as well if @var{justify} is
1202non-@code{nil}. 1202non-@code{nil}.