aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Rudalics2008-11-07 14:14:26 +0000
committerMartin Rudalics2008-11-07 14:14:26 +0000
commit86ab855a9a40596b092eeaabf7ed92275f8c7a38 (patch)
treec47b3b43d5cd56126c251c8f86a86697c2b60ddb
parentefafc282c94dabfda116331b60df819c23b7220e (diff)
downloademacs-86ab855a9a40596b092eeaabf7ed92275f8c7a38.tar.gz
emacs-86ab855a9a40596b092eeaabf7ed92275f8c7a38.zip
(Displaying Buffers): For switch-to-buffer mention that
it may fall back on pop-to-buffer. (Window Point): Add entry for window-point-insertion-type.
-rw-r--r--doc/lispref/ChangeLog10
-rw-r--r--doc/lispref/windows.texi12
2 files changed, 19 insertions, 3 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index a5f37f98db9..896be8d4a5e 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -2,13 +2,17 @@
2 2
3 * windows.texi (Windows): Update entries. 3 * windows.texi (Windows): Update entries.
4 (Basic Windows): Remove listing of attributes. Reword. 4 (Basic Windows): Remove listing of attributes. Reword.
5 (Splitting Windows, Deleting Windows, Window Point): Reword. 5 (Splitting Windows, Deleting Windows): Reword.
6 (Selecting Windows, Cyclic Window Ordering): Reword with special 6 (Selecting Windows, Cyclic Window Ordering): Reword with special
7 emphasis on order of recently selected windows and buffer list. 7 emphasis on order of recently selected windows and buffer list.
8 (Buffers and Windows, Displaying Buffers, Choosing Window): 8 (Buffers and Windows, Choosing Window): Reword with special
9 Reword with special emphasis on dedicated windows. 9 emphasis on dedicated windows.
10 (Displaying Buffers): Reword. For switch-to-buffer mention that
11 it may fall back on pop-to-buffer. For other-window try to
12 explain how it treats the cyclic ordering of windows.
10 (Dedicated Windows): New node and section discussing dedicated 13 (Dedicated Windows): New node and section discussing dedicated
11 windows and associated functions. 14 windows and associated functions.
15 (Window Point): Add entry for window-point-insertion-type. Reword.
12 (Window Start and End): Rename node and section title. Reword. 16 (Window Start and End): Rename node and section title. Reword.
13 (Textual Scrolling, Vertical Scrolling, Horizontal Scrolling): 17 (Textual Scrolling, Vertical Scrolling, Horizontal Scrolling):
14 Minor rewording. 18 Minor rewording.
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi
index 77f1f30fc02..6243babaa53 100644
--- a/doc/lispref/windows.texi
+++ b/doc/lispref/windows.texi
@@ -790,6 +790,12 @@ that does not identify an existing buffer, then a new buffer by that
790name is created. The major mode for the new buffer is set according to 790name is created. The major mode for the new buffer is set according to
791the variable @code{default-major-mode}, @xref{Auto Major Mode}. 791the variable @code{default-major-mode}, @xref{Auto Major Mode}.
792 792
793When @code{enable-recursive-minibuffers} is non-@code{nil} and the
794selected window is either the minibuffer window or is dedicated to its
795buffer (@pxref{Dedicated Windows}), @code{switch-to-buffer} calls
796@code{pop-to-buffer} (see below) to display the buffer in some other
797window.
798
793Normally the specified buffer is put at the front of the buffer list 799Normally the specified buffer is put at the front of the buffer list
794(both the selected frame's buffer list and the frame-independent buffer 800(both the selected frame's buffer list and the frame-independent buffer
795list). This affects the operation of @code{other-buffer}. However, if 801list). This affects the operation of @code{other-buffer}. However, if
@@ -1279,6 +1285,12 @@ If @var{window} is selected, and its buffer is current,
1279this simply does @code{goto-char}. 1285this simply does @code{goto-char}.
1280@end defun 1286@end defun
1281 1287
1288@defvar window-point-insertion-type
1289This variable specifies the marker insertion type (@pxref{Marker
1290Insertion Types}) of @code{window-point}. The default is @code{nil},
1291so @code{window-point} will stay behind text inserted there.
1292@end defvar
1293
1282@node Window Start and End 1294@node Window Start and End
1283@section The Window Start and End Positions 1295@section The Window Start and End Positions
1284@cindex window start position 1296@cindex window start position