diff options
| author | Miles Bader | 2007-08-13 13:41:28 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-08-13 13:41:28 +0000 |
| commit | 37cc095b6a175fb5a2fb18fa029eaf3aa3b3fa53 (patch) | |
| tree | 7fb68e80f66e55100c48b9751cf70c74af2d4bf1 /lispref | |
| parent | 031b6333283be57d971e557b83da31c6be937b0a (diff) | |
| parent | 9d2db4c6637fe37d75f947063bcb2ecce319a1bc (diff) | |
| download | emacs-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/ChangeLog | 18 | ||||
| -rw-r--r-- | lispref/intro.texi | 2 | ||||
| -rw-r--r-- | lispref/modes.texi | 2 | ||||
| -rw-r--r-- | lispref/tips.texi | 6 | ||||
| -rw-r--r-- | lispref/windows.texi | 6 |
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 @@ | |||
| 1 | 2007-08-08 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * modes.texi (Example Major Modes): Fix typo. | ||
| 4 | |||
| 5 | 2007-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 | |||
| 11 | 2007-08-07 Chong Yidong <cyd@stupidchicken.com> | ||
| 12 | |||
| 13 | * display.texi (Image Cache): Document image-refresh. | ||
| 14 | |||
| 15 | 2007-08-06 Martin Rudalics <rudalics@gmx.at> | ||
| 16 | |||
| 17 | * windows.texi (Size of Window): Document window-full-width-p. | ||
| 18 | |||
| 1 | 2007-07-25 Glenn Morris <rgm@gnu.org> | 19 | 2007-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 | |||
| 213 | Variables}. | 213 | Variables}. |
| 214 | 214 | ||
| 215 | @defun booleanp object | 215 | @defun booleanp object |
| 216 | Return non-nil iff @var{object} is one of the two canonical boolean | 216 | Return non-nil if @var{object} is one of the two canonical boolean |
| 217 | values: @code{t} or @code{nil}. | 217 | values: @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 |
| 1080 | commands to treat only blank lines as paragraph separators. And the | 1080 | commands to treat only blank lines as paragraph separators. And the |
| 1081 | modes should undestand the Lisp conventions for comments. The rest of | 1081 | modes 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 |
| 848 | Avoid using ``iff'' (a mathematics term meaning ``if and only if''), | ||
| 849 | since many people are unfamiliar with it and mistake it for a typo. In | ||
| 850 | most cases, the meaning is clear with just ``if''. Otherwise, try to | ||
| 851 | find an alternate phrasing that conveys the meaning. | ||
| 852 | |||
| 853 | @item | ||
| 848 | When a command is meaningful only in a certain mode or situation, | 854 | When a command is meaningful only in a certain mode or situation, |
| 849 | do mention that in the documentation string. For example, | 855 | do mention that in the documentation string. For example, |
| 850 | the documentation of @code{dired-find-file} is: | 856 | the 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 | ||
| 1891 | This function returns non-@code{nil} if @var{window} is as wide as | ||
| 1892 | the frame that contains it; otherwise @code{nil}. | ||
| 1893 | If @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 |
| 1891 | This function returns a list of the edge coordinates of @var{window}. | 1897 | This function returns a list of the edge coordinates of @var{window}. |
| 1892 | If @var{window} is @code{nil}, the selected window is used. | 1898 | If @var{window} is @code{nil}, the selected window is used. |