aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
authorMiles Bader2007-08-13 13:41:28 +0000
committerMiles Bader2007-08-13 13:41:28 +0000
commit37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53 (patch)
tree7fb68e80f66e55100c48b9751cf70c74af2d4bf1 /lispref
parent031b6333283be57d971e557b83da31c6be937b0a (diff)
parent9d2db4c6637fe37d75f947063bcb2ecce319a1bc (diff)
downloademacs-37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53.tar.gz
emacs-37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53.zip
Merge from emacs--rel--22
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-851
Diffstat (limited to 'lispref')
-rw-r--r--lispref/ChangeLog18
-rw-r--r--lispref/intro.texi2
-rw-r--r--lispref/modes.texi2
-rw-r--r--lispref/tips.texi6
-rw-r--r--lispref/windows.texi6
5 files changed, 32 insertions, 2 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index cf110147ad8..75d40dbd19c 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,21 @@
12007-08-08 Martin Rudalics <rudalics@gmx.at>
2
3 * modes.texi (Example Major Modes): Fix typo.
4
52007-08-08 Glenn Morris <rgm@gnu.org>
6
7 * intro.texi (nil and t): Do not use `iff' in documentation.
8
9 * tips.texi (Documentation Tips): Recommend against `iff'.
10
112007-08-07 Chong Yidong <cyd@stupidchicken.com>
12
13 * display.texi (Image Cache): Document image-refresh.
14
152007-08-06 Martin Rudalics <rudalics@gmx.at>
16
17 * windows.texi (Size of Window): Document window-full-width-p.
18
12007-07-25 Glenn Morris <rgm@gnu.org> 192007-07-25 Glenn Morris <rgm@gnu.org>
2 20
3 * gpl.texi (GPL): Replace license with GPLv3. 21 * gpl.texi (GPL): Replace license with GPLv3.
diff --git a/lispref/intro.texi b/lispref/intro.texi
index 35566603b7c..ed0fd1c0699 100644
--- a/lispref/intro.texi
+++ b/lispref/intro.texi
@@ -213,7 +213,7 @@ values results in a @code{setting-constant} error. @xref{Constant
213Variables}. 213Variables}.
214 214
215@defun booleanp object 215@defun booleanp object
216Return non-nil iff @var{object} is one of the two canonical boolean 216Return non-nil if @var{object} is one of the two canonical boolean
217values: @code{t} or @code{nil}. 217values: @code{t} or @code{nil}.
218@end defun 218@end defun
219 219
diff --git a/lispref/modes.texi b/lispref/modes.texi
index 95fbe6a292f..3d60756a901 100644
--- a/lispref/modes.texi
+++ b/lispref/modes.texi
@@ -1078,7 +1078,7 @@ each calls the following function to set various variables:
1078 1078
1079 In Lisp and most programming languages, we want the paragraph 1079 In Lisp and most programming languages, we want the paragraph
1080commands to treat only blank lines as paragraph separators. And the 1080commands to treat only blank lines as paragraph separators. And the
1081modes should undestand the Lisp conventions for comments. The rest of 1081modes should understand the Lisp conventions for comments. The rest of
1082@code{lisp-mode-variables} sets this up: 1082@code{lisp-mode-variables} sets this up:
1083 1083
1084@smallexample 1084@smallexample
diff --git a/lispref/tips.texi b/lispref/tips.texi
index de590c4cf9d..f3070f4659b 100644
--- a/lispref/tips.texi
+++ b/lispref/tips.texi
@@ -845,6 +845,12 @@ Instead of, ``Cause Emacs to display text in boldface,'' write just
845``Display text in boldface.'' 845``Display text in boldface.''
846 846
847@item 847@item
848Avoid using ``iff'' (a mathematics term meaning ``if and only if''),
849since many people are unfamiliar with it and mistake it for a typo. In
850most cases, the meaning is clear with just ``if''. Otherwise, try to
851find an alternate phrasing that conveys the meaning.
852
853@item
848When a command is meaningful only in a certain mode or situation, 854When a command is meaningful only in a certain mode or situation,
849do mention that in the documentation string. For example, 855do mention that in the documentation string. For example,
850the documentation of @code{dired-find-file} is: 856the documentation of @code{dired-find-file} is:
diff --git a/lispref/windows.texi b/lispref/windows.texi
index 22bb43ecaa0..bd8f7bc2d36 100644
--- a/lispref/windows.texi
+++ b/lispref/windows.texi
@@ -1887,6 +1887,12 @@ If @var{window} is @code{nil}, the function uses the selected window.
1887@end example 1887@end example
1888@end defun 1888@end defun
1889 1889
1890@defun window-full-width-p &optional window
1891This function returns non-@code{nil} if @var{window} is as wide as
1892the frame that contains it; otherwise @code{nil}.
1893If @var{window} is @code{nil}, the function uses the selected window.
1894@end defun
1895
1890@defun window-edges &optional window 1896@defun window-edges &optional window
1891This function returns a list of the edge coordinates of @var{window}. 1897This function returns a list of the edge coordinates of @var{window}.
1892If @var{window} is @code{nil}, the selected window is used. 1898If @var{window} is @code{nil}, the selected window is used.