diff options
| author | Glenn Morris | 2014-03-21 12:04:57 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-03-21 12:04:57 -0700 |
| commit | 5671dc515946c8a27b09d060bc34345d42a8fa6e (patch) | |
| tree | 54668c08879422e9c9d8c8c7a9e612d357971a49 /doc | |
| parent | 26e91130ed0611a1074d0cac5880c065f9ba69c8 (diff) | |
| parent | 1e92a8a3aa7958ba699cd0430be4f23aff6c4c01 (diff) | |
| download | emacs-5671dc515946c8a27b09d060bc34345d42a8fa6e.tar.gz emacs-5671dc515946c8a27b09d060bc34345d42a8fa6e.zip | |
Merge from emacs-24; up to 2014-03-21T08:51:02Z!eliz@gnu.org
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 12 | ||||
| -rw-r--r-- | doc/lispref/commands.texi | 9 | ||||
| -rw-r--r-- | doc/lispref/frames.texi | 5 | ||||
| -rw-r--r-- | doc/lispref/windows.texi | 9 | ||||
| -rw-r--r-- | doc/misc/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/misc/ede.texi | 2 | ||||
| -rw-r--r-- | doc/misc/vip.texi | 2 |
7 files changed, 33 insertions, 11 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index c2d6c8d7012..3bbcee76884 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2014-03-21 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * frames.texi (Size and Position): In `frame-resize-pixelwise' | ||
| 4 | description drop remark about frame maximization. | ||
| 5 | * windows.texi (Display Action Functions): Add description for | ||
| 6 | `display-buffer-no-window' and explain use of `allow-no-window' | ||
| 7 | alist entries. | ||
| 8 | |||
| 9 | 2014-03-21 Glenn Morris <rgm@gnu.org> | ||
| 10 | |||
| 11 | * commands.texi (Defining Commands): Copyedit re `interactive-only'. | ||
| 12 | |||
| 1 | 2014-03-20 Paul Eggert <eggert@cs.ucla.edu> | 13 | 2014-03-20 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 14 | ||
| 3 | * internals.texi (C Integer Types): Prefer 'false' and 'true' | 15 | * internals.texi (C Integer Types): Prefer 'false' and 'true' |
diff --git a/doc/lispref/commands.texi b/doc/lispref/commands.texi index 5c28522158a..198926a9a6a 100644 --- a/doc/lispref/commands.texi +++ b/doc/lispref/commands.texi | |||
| @@ -123,11 +123,10 @@ value for this property takes precedence over any @code{interactive} | |||
| 123 | form in the function body itself. This feature is seldom used. | 123 | form in the function body itself. This feature is seldom used. |
| 124 | 124 | ||
| 125 | @cindex @code{interactive-only} property | 125 | @cindex @code{interactive-only} property |
| 126 | Sometimes, a named command is only intended to be called | 126 | Sometimes, a function is only intended to be called interactively, |
| 127 | interactively, never directly from Lisp. In that case, give it a | 127 | never directly from Lisp. In that case, give the function a |
| 128 | non-@code{nil} @code{interactive-only} property. In that case, the | 128 | non-@code{nil} @code{interactive-only} property. This causes the |
| 129 | byte compiler will print a warning message if the command is called | 129 | byte compiler to warn if the command is called from Lisp. |
| 130 | from Lisp. | ||
| 131 | 130 | ||
| 132 | @menu | 131 | @menu |
| 133 | * Using Interactive:: General rules for @code{interactive}. | 132 | * Using Interactive:: General rules for @code{interactive}. |
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index e896d1b4c04..b6513426909 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi | |||
| @@ -1163,10 +1163,7 @@ on the toolkit used: Dragging the frame border with the mouse is usually | |||
| 1163 | always done character-wise. Calling @code{set-frame-size} (see below) | 1163 | always done character-wise. Calling @code{set-frame-size} (see below) |
| 1164 | with arguments that do not specify the frame size as an integer multiple | 1164 | with arguments that do not specify the frame size as an integer multiple |
| 1165 | of its character size may be, however, either ignored or cause a | 1165 | of its character size may be, however, either ignored or cause a |
| 1166 | rounding (GTK+, Windows) or get accepted (Lucid, Motif). This also | 1166 | rounding (GTK+, Windows) or get accepted (Lucid, Motif). |
| 1167 | means that with some toolkits and a display whose size is not an | ||
| 1168 | integral multiple of your default font, you may have to set this to | ||
| 1169 | non-@code{nil} in order to fully maximize a frame. | ||
| 1170 | @end defopt | 1167 | @end defopt |
| 1171 | 1168 | ||
| 1172 | @defun set-frame-size frame width height pixelwise | 1169 | @defun set-frame-size frame width height pixelwise |
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi index 1b3fc377d61..e4177836fa8 100644 --- a/doc/lispref/windows.texi +++ b/doc/lispref/windows.texi | |||
| @@ -2280,6 +2280,15 @@ window and displaying the buffer in that window. It can fail if all | |||
| 2280 | windows are dedicated to another buffer (@pxref{Dedicated Windows}). | 2280 | windows are dedicated to another buffer (@pxref{Dedicated Windows}). |
| 2281 | @end defun | 2281 | @end defun |
| 2282 | 2282 | ||
| 2283 | @defun display-buffer-no-window buffer alist | ||
| 2284 | If @var{alist} has a non-@code{nil} @code{allow-no-window} entry, then | ||
| 2285 | this function does not display @code{buffer}. This allows to override | ||
| 2286 | the default action and avoid displaying the buffer. It is assumed that | ||
| 2287 | when the caller specifies a non-@code{nil} @code{allow-no-window} value | ||
| 2288 | it can handle a @code{nil} value returned from @code{display-buffer} in | ||
| 2289 | this case. | ||
| 2290 | @end defun | ||
| 2291 | |||
| 2283 | To illustrate the use of action functions, consider the following | 2292 | To illustrate the use of action functions, consider the following |
| 2284 | example. | 2293 | example. |
| 2285 | 2294 | ||
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 8796cafa4d6..34021fd3d9b 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-03-21 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * ede.texi (ede-linux): | ||
| 4 | * vip.texi (New Bindings): Tiny copyedits. | ||
| 5 | |||
| 1 | 2014-03-18 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2014-03-18 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * vip.texi (Other Vi Commands): Adjust doc of C-j. | 8 | * vip.texi (Other Vi Commands): Adjust doc of C-j. |
diff --git a/doc/misc/ede.texi b/doc/misc/ede.texi index 954427d10bf..ab1e8a418da 100644 --- a/doc/misc/ede.texi +++ b/doc/misc/ede.texi | |||
| @@ -917,7 +917,7 @@ and has an optimized include file identification function. | |||
| 917 | 917 | ||
| 918 | Through the variables @code{project-linux-build-directory-default} and | 918 | Through the variables @code{project-linux-build-directory-default} and |
| 919 | @code{project-linux-architecture-default}, you can set the build | 919 | @code{project-linux-architecture-default}, you can set the build |
| 920 | directory and its architecture, resp. The default is to assume that | 920 | directory and its architecture, respectively. The default is to assume that |
| 921 | the build happens in the source directory and to auto-detect the | 921 | the build happens in the source directory and to auto-detect the |
| 922 | architecture; if the auto-detection fails, you will be asked. | 922 | architecture; if the auto-detection fails, you will be asked. |
| 923 | 923 | ||
diff --git a/doc/misc/vip.texi b/doc/misc/vip.texi index 07f12fdf882..25605aadcac 100644 --- a/doc/misc/vip.texi +++ b/doc/misc/vip.texi | |||
| @@ -569,7 +569,7 @@ in the current window, while @kbd{S} selects buffer in another window. | |||
| 569 | @kindex 1300 @kbd{X} (@code{vip-ctl-x-equivalent}) | 569 | @kindex 1300 @kbd{X} (@code{vip-ctl-x-equivalent}) |
| 570 | These keys will exit from vi mode and return to emacs mode temporarily. | 570 | These keys will exit from vi mode and return to emacs mode temporarily. |
| 571 | If you type @kbd{C} (@kbd{X}), Emacs will be in emacs mode and will believe | 571 | If you type @kbd{C} (@kbd{X}), Emacs will be in emacs mode and will believe |
| 572 | that you have typed @kbd{C-c} (@kbd{C-x}, resp.) in emacs mode. Moreover, | 572 | that you have typed @kbd{C-c} (@kbd{C-x}) in emacs mode. Moreover, |
| 573 | if the following character you type is an upper-case letter, then Emacs | 573 | if the following character you type is an upper-case letter, then Emacs |
| 574 | will believe that you have typed the corresponding control character. | 574 | will believe that you have typed the corresponding control character. |
| 575 | You will be in vi mode again after the command is executed. For example, | 575 | You will be in vi mode again after the command is executed. For example, |