aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2014-03-21 12:04:57 -0700
committerGlenn Morris2014-03-21 12:04:57 -0700
commit5671dc515946c8a27b09d060bc34345d42a8fa6e (patch)
tree54668c08879422e9c9d8c8c7a9e612d357971a49 /doc
parent26e91130ed0611a1074d0cac5880c065f9ba69c8 (diff)
parent1e92a8a3aa7958ba699cd0430be4f23aff6c4c01 (diff)
downloademacs-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/ChangeLog12
-rw-r--r--doc/lispref/commands.texi9
-rw-r--r--doc/lispref/frames.texi5
-rw-r--r--doc/lispref/windows.texi9
-rw-r--r--doc/misc/ChangeLog5
-rw-r--r--doc/misc/ede.texi2
-rw-r--r--doc/misc/vip.texi2
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 @@
12014-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
92014-03-21 Glenn Morris <rgm@gnu.org>
10
11 * commands.texi (Defining Commands): Copyedit re `interactive-only'.
12
12014-03-20 Paul Eggert <eggert@cs.ucla.edu> 132014-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}
123form in the function body itself. This feature is seldom used. 123form 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,
127interactively, never directly from Lisp. In that case, give it a 127never directly from Lisp. In that case, give the function a
128non-@code{nil} @code{interactive-only} property. In that case, the 128non-@code{nil} @code{interactive-only} property. This causes the
129byte compiler will print a warning message if the command is called 129byte compiler to warn if the command is called from Lisp.
130from 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
1163always done character-wise. Calling @code{set-frame-size} (see below) 1163always done character-wise. Calling @code{set-frame-size} (see below)
1164with arguments that do not specify the frame size as an integer multiple 1164with arguments that do not specify the frame size as an integer multiple
1165of its character size may be, however, either ignored or cause a 1165of its character size may be, however, either ignored or cause a
1166rounding (GTK+, Windows) or get accepted (Lucid, Motif). This also 1166rounding (GTK+, Windows) or get accepted (Lucid, Motif).
1167means that with some toolkits and a display whose size is not an
1168integral multiple of your default font, you may have to set this to
1169non-@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
2280windows are dedicated to another buffer (@pxref{Dedicated Windows}). 2280windows are dedicated to another buffer (@pxref{Dedicated Windows}).
2281@end defun 2281@end defun
2282 2282
2283@defun display-buffer-no-window buffer alist
2284If @var{alist} has a non-@code{nil} @code{allow-no-window} entry, then
2285this function does not display @code{buffer}. This allows to override
2286the default action and avoid displaying the buffer. It is assumed that
2287when the caller specifies a non-@code{nil} @code{allow-no-window} value
2288it can handle a @code{nil} value returned from @code{display-buffer} in
2289this case.
2290@end defun
2291
2283To illustrate the use of action functions, consider the following 2292To illustrate the use of action functions, consider the following
2284example. 2293example.
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 @@
12014-03-21 Glenn Morris <rgm@gnu.org>
2
3 * ede.texi (ede-linux):
4 * vip.texi (New Bindings): Tiny copyedits.
5
12014-03-18 Stefan Monnier <monnier@iro.umontreal.ca> 62014-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
918Through the variables @code{project-linux-build-directory-default} and 918Through 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
920directory and its architecture, resp. The default is to assume that 920directory and its architecture, respectively. The default is to assume that
921the build happens in the source directory and to auto-detect the 921the build happens in the source directory and to auto-detect the
922architecture; if the auto-detection fails, you will be asked. 922architecture; 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})
570These keys will exit from vi mode and return to emacs mode temporarily. 570These keys will exit from vi mode and return to emacs mode temporarily.
571If you type @kbd{C} (@kbd{X}), Emacs will be in emacs mode and will believe 571If you type @kbd{C} (@kbd{X}), Emacs will be in emacs mode and will believe
572that you have typed @kbd{C-c} (@kbd{C-x}, resp.) in emacs mode. Moreover, 572that you have typed @kbd{C-c} (@kbd{C-x}) in emacs mode. Moreover,
573if the following character you type is an upper-case letter, then Emacs 573if the following character you type is an upper-case letter, then Emacs
574will believe that you have typed the corresponding control character. 574will believe that you have typed the corresponding control character.
575You will be in vi mode again after the command is executed. For example, 575You will be in vi mode again after the command is executed. For example,