diff options
| -rw-r--r-- | doc/lispref/windows.texi | 5 | ||||
| -rw-r--r-- | lisp/window.el | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi index 1c940dcdac0..2d340e34cd5 100644 --- a/doc/lispref/windows.texi +++ b/doc/lispref/windows.texi | |||
| @@ -3117,7 +3117,10 @@ specified buffer. | |||
| 3117 | 3117 | ||
| 3118 | @defun display-buffer-in-side-window buffer alist | 3118 | @defun display-buffer-in-side-window buffer alist |
| 3119 | This function displays @var{buffer} in a side window of the selected | 3119 | This function displays @var{buffer} in a side window of the selected |
| 3120 | frame. @var{alist} is an association list of symbols and values as for | 3120 | frame. It returns the window used for displaying @var{buffer}, |
| 3121 | @code{nil} if no such window can be found or created. | ||
| 3122 | |||
| 3123 | @var{alist} is an association list of symbols and values as for | ||
| 3121 | @code{display-buffer}. The following symbols in @var{alist} are special | 3124 | @code{display-buffer}. The following symbols in @var{alist} are special |
| 3122 | for this function: | 3125 | for this function: |
| 3123 | 3126 | ||
diff --git a/lisp/window.el b/lisp/window.el index 4511267149c..dea0b250a94 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -979,8 +979,8 @@ be reused and have its `window-slot' parameter value accordingly | |||
| 979 | modified. | 979 | modified. |
| 980 | 980 | ||
| 981 | Unless `display-buffer-mark-dedicated' is non-nil, softly | 981 | Unless `display-buffer-mark-dedicated' is non-nil, softly |
| 982 | dedicate the side window used to BUFFER. Return nil if no | 982 | dedicate the side window used to BUFFER. Return the window used |
| 983 | suitable window is found. | 983 | for displaying BUFFER, nil if no suitable window can be found. |
| 984 | 984 | ||
| 985 | This function installs the `window-side' and `window-slot' | 985 | This function installs the `window-side' and `window-slot' |
| 986 | parameters and makes them persistent. It neither modifies ALIST | 986 | parameters and makes them persistent. It neither modifies ALIST |