diff options
| author | Paul Eggert | 2016-09-26 13:32:28 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-09-26 13:32:28 -0700 |
| commit | dcd90f60eb8952d119d97efcef9564ec96def054 (patch) | |
| tree | 2d3a5bbac64d7fbd94f3af0774218911a522e61f /src | |
| parent | c44ecb77ab33f0a0559c3e5da42fb486d6b014dd (diff) | |
| parent | 0ffc9cef49b0fceb3c5e904837ea5675fe4306ac (diff) | |
| download | emacs-dcd90f60eb8952d119d97efcef9564ec96def054.tar.gz emacs-dcd90f60eb8952d119d97efcef9564ec96def054.zip | |
Merge from origin/emacs-25
0ffc9ce Update admin/authors.el
0ad7410 Update Antinews in ELisp manual
ea0f750 Fix comments on window height macros
0bbdeed Fix 'url-http-create-request' when cookies are used
0045998 Fix cross reference in frames.texi
1392894 ; * etc/DEBUG: Minor copyedits.
304a5c8 ; * etc/DEBUG: Improve documentation of getting control to GDB.
56bf7d7 Fix regexp-opt documentation (bug #17862)
803ad6f ; Fix documentation of seq-subseq
ed4530d * lisp/emacs-lisp/gv.el (gv-ref): Fix example of PLACE in doc...
88ea396 ; Spelling fixes
17197d0 Fix tags-query-replace docstring
80a7f8b Clarify documentation of precision in format specs
88a5052 Improve and clarify documentation of subprocesses
89eb09f * etc/PROBLEMS: Mention gnutls-cli 3.5.3 (Bug#24247).
# Conflicts:
# etc/PROBLEMS
# src/process.c
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.c | 26 | ||||
| -rw-r--r-- | src/window.h | 4 |
2 files changed, 15 insertions, 15 deletions
diff --git a/src/process.c b/src/process.c index 29bf43e0f29..9a0ab00c505 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -980,7 +980,7 @@ If PROCESS has not yet exited or died, return 0. */) | |||
| 980 | DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0, | 980 | DEFUN ("process-id", Fprocess_id, Sprocess_id, 1, 1, 0, |
| 981 | doc: /* Return the process id of PROCESS. | 981 | doc: /* Return the process id of PROCESS. |
| 982 | This is the pid of the external process which PROCESS uses or talks to. | 982 | This is the pid of the external process which PROCESS uses or talks to. |
| 983 | For a network connection, this value is nil. */) | 983 | For a network, serial, and pipe connections, this value is nil. */) |
| 984 | (register Lisp_Object process) | 984 | (register Lisp_Object process) |
| 985 | { | 985 | { |
| 986 | pid_t pid; | 986 | pid_t pid; |
| @@ -1004,8 +1004,8 @@ DEFUN ("process-command", Fprocess_command, Sprocess_command, 1, 1, 0, | |||
| 1004 | doc: /* Return the command that was executed to start PROCESS. | 1004 | doc: /* Return the command that was executed to start PROCESS. |
| 1005 | This is a list of strings, the first string being the program executed | 1005 | This is a list of strings, the first string being the program executed |
| 1006 | and the rest of the strings being the arguments given to it. | 1006 | and the rest of the strings being the arguments given to it. |
| 1007 | For a network or serial process, this is nil (process is running) or t | 1007 | For a network or serial or pipe connection, this is nil (process is running) |
| 1008 | \(process is stopped). */) | 1008 | or t (process is stopped). */) |
| 1009 | (register Lisp_Object process) | 1009 | (register Lisp_Object process) |
| 1010 | { | 1010 | { |
| 1011 | CHECK_PROCESS (process); | 1011 | CHECK_PROCESS (process); |
| @@ -1237,13 +1237,13 @@ DEFUN ("process-query-on-exit-flag", | |||
| 1237 | DEFUN ("process-contact", Fprocess_contact, Sprocess_contact, | 1237 | DEFUN ("process-contact", Fprocess_contact, Sprocess_contact, |
| 1238 | 1, 2, 0, | 1238 | 1, 2, 0, |
| 1239 | doc: /* Return the contact info of PROCESS; t for a real child. | 1239 | doc: /* Return the contact info of PROCESS; t for a real child. |
| 1240 | For a network or serial connection, the value depends on the optional | 1240 | For a network or serial or pipe connection, the value depends on the |
| 1241 | KEY arg. If KEY is nil, value is a cons cell of the form (HOST | 1241 | optional KEY arg. If KEY is nil, value is a cons cell of the form |
| 1242 | SERVICE) for a network connection or (PORT SPEED) for a serial | 1242 | \(HOST SERVICE) for a network connection or (PORT SPEED) for a serial |
| 1243 | connection. If KEY is t, the complete contact information for the | 1243 | connection; it is t for a pipe connection. If KEY is t, the complete |
| 1244 | connection is returned, else the specific value for the keyword KEY is | 1244 | contact information for the connection is returned, else the specific |
| 1245 | returned. See `make-network-process' or `make-serial-process' for a | 1245 | value for the keyword KEY is returned. See `make-network-process', |
| 1246 | list of keywords. | 1246 | `make-serial-process', or `make pipe-process' for the list of keywords. |
| 1247 | If PROCESS is a non-blocking network process that hasn't been fully | 1247 | If PROCESS is a non-blocking network process that hasn't been fully |
| 1248 | set up yet, this function will block until socket setup has completed. */) | 1248 | set up yet, this function will block until socket setup has completed. */) |
| 1249 | (Lisp_Object process, Lisp_Object key) | 1249 | (Lisp_Object process, Lisp_Object key) |
| @@ -1316,7 +1316,7 @@ a socket connection. */) | |||
| 1316 | 1316 | ||
| 1317 | DEFUN ("process-type", Fprocess_type, Sprocess_type, 1, 1, 0, | 1317 | DEFUN ("process-type", Fprocess_type, Sprocess_type, 1, 1, 0, |
| 1318 | doc: /* Return the connection type of PROCESS. | 1318 | doc: /* Return the connection type of PROCESS. |
| 1319 | The value is either the symbol `real', `network', or `serial'. | 1319 | The value is either the symbol `real', `network', `serial', or `pipe'. |
| 1320 | PROCESS may be a process, a buffer, the name of a process or buffer, or | 1320 | PROCESS may be a process, a buffer, the name of a process or buffer, or |
| 1321 | nil, indicating the current buffer's process. */) | 1321 | nil, indicating the current buffer's process. */) |
| 1322 | (Lisp_Object process) | 1322 | (Lisp_Object process) |
| @@ -6532,8 +6532,8 @@ See function `interrupt-process' for more details on usage. */) | |||
| 6532 | DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0, | 6532 | DEFUN ("stop-process", Fstop_process, Sstop_process, 0, 2, 0, |
| 6533 | doc: /* Stop process PROCESS. May be process or name of one. | 6533 | doc: /* Stop process PROCESS. May be process or name of one. |
| 6534 | See function `interrupt-process' for more details on usage. | 6534 | See function `interrupt-process' for more details on usage. |
| 6535 | If PROCESS is a network or serial process, inhibit handling of incoming | 6535 | If PROCESS is a network or serial or pipe connection, inhibit handling |
| 6536 | traffic. */) | 6536 | of incoming traffic. */) |
| 6537 | (Lisp_Object process, Lisp_Object current_group) | 6537 | (Lisp_Object process, Lisp_Object current_group) |
| 6538 | { | 6538 | { |
| 6539 | if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process) | 6539 | if (PROCESSP (process) && (NETCONN_P (process) || SERIALCONN_P (process) |
diff --git a/src/window.h b/src/window.h index c2898194854..a124b3311d0 100644 --- a/src/window.h +++ b/src/window.h | |||
| @@ -920,7 +920,7 @@ wset_next_buffers (struct window *w, Lisp_Object val) | |||
| 920 | ? WINDOW_CONFIG_SCROLL_BAR_HEIGHT (W) \ | 920 | ? WINDOW_CONFIG_SCROLL_BAR_HEIGHT (W) \ |
| 921 | : 0) | 921 | : 0) |
| 922 | 922 | ||
| 923 | /* Height in pixels, and in lines, of the mode line. | 923 | /* Height in pixels of the mode line. |
| 924 | May be zero if W doesn't have a mode line. */ | 924 | May be zero if W doesn't have a mode line. */ |
| 925 | #define WINDOW_MODE_LINE_HEIGHT(W) \ | 925 | #define WINDOW_MODE_LINE_HEIGHT(W) \ |
| 926 | (WINDOW_WANTS_MODELINE_P ((W)) \ | 926 | (WINDOW_WANTS_MODELINE_P ((W)) \ |
| @@ -930,7 +930,7 @@ wset_next_buffers (struct window *w, Lisp_Object val) | |||
| 930 | #define WINDOW_MODE_LINE_LINES(W) \ | 930 | #define WINDOW_MODE_LINE_LINES(W) \ |
| 931 | WINDOW_WANTS_MODELINE_P (W) | 931 | WINDOW_WANTS_MODELINE_P (W) |
| 932 | 932 | ||
| 933 | /* Height in pixels, and in lines, of the header line. | 933 | /* Height in pixels of the header line. |
| 934 | Zero if W doesn't have a header line. */ | 934 | Zero if W doesn't have a header line. */ |
| 935 | #define WINDOW_HEADER_LINE_HEIGHT(W) \ | 935 | #define WINDOW_HEADER_LINE_HEIGHT(W) \ |
| 936 | (WINDOW_WANTS_HEADER_LINE_P (W) \ | 936 | (WINDOW_WANTS_HEADER_LINE_P (W) \ |