diff options
| author | Eli Zaretskii | 2016-05-07 12:16:27 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2016-05-07 12:16:27 +0300 |
| commit | 4ffec91aa1fe668609f460cf6377644597c23306 (patch) | |
| tree | 4fe9756b816ca269d3fb520b1f3719dad3696673 /src/process.c | |
| parent | dc662713e235c9c55c71636168af7e14519f180d (diff) | |
| download | emacs-4ffec91aa1fe668609f460cf6377644597c23306.tar.gz emacs-4ffec91aa1fe668609f460cf6377644597c23306.zip | |
Document automatic adjustment of process' logical window dimensions
* doc/lispref/processes.texi (Process Buffers): Document
'set-process-window-size' and
'window-adjust-process-window-size-function'.
* etc/NEWS: Mention the new functionality and variable.
* src/process.c (Fset_process_window_size): Improve the doc string.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 2c758a4c9a7..14d7b6df1c3 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1108,7 +1108,9 @@ See `set-process-sentinel' for more info on sentinels. */) | |||
| 1108 | 1108 | ||
| 1109 | DEFUN ("set-process-window-size", Fset_process_window_size, | 1109 | DEFUN ("set-process-window-size", Fset_process_window_size, |
| 1110 | Sset_process_window_size, 3, 3, 0, | 1110 | Sset_process_window_size, 3, 3, 0, |
| 1111 | doc: /* Tell PROCESS that it has logical window size HEIGHT and WIDTH. */) | 1111 | doc: /* Tell PROCESS that it has logical window size WIDTH by HEIGHT. |
| 1112 | Value is t if PROCESS was successfully told about the window size, | ||
| 1113 | nil otherwise. */) | ||
| 1112 | (Lisp_Object process, Lisp_Object height, Lisp_Object width) | 1114 | (Lisp_Object process, Lisp_Object height, Lisp_Object width) |
| 1113 | { | 1115 | { |
| 1114 | CHECK_PROCESS (process); | 1116 | CHECK_PROCESS (process); |