diff options
Diffstat (limited to 'lisp/simple.el')
| -rw-r--r-- | lisp/simple.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 4b158d31f36..1fb2fa6014c 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -3141,14 +3141,17 @@ Also, delete any process that is exited or signaled." | |||
| 3141 | (display-buffer (button-get button 'process-buffer))) | 3141 | (display-buffer (button-get button 'process-buffer))) |
| 3142 | 3142 | ||
| 3143 | (defun list-processes (&optional query-only buffer) | 3143 | (defun list-processes (&optional query-only buffer) |
| 3144 | "Display a list of all processes. | 3144 | "Display a list of all processes that are Emacs sub-processes. |
| 3145 | If optional argument QUERY-ONLY is non-nil, only processes with | 3145 | If optional argument QUERY-ONLY is non-nil, only processes with |
| 3146 | the query-on-exit flag set are listed. | 3146 | the query-on-exit flag set are listed. |
| 3147 | Any process listed as exited or signaled is actually eliminated | 3147 | Any process listed as exited or signaled is actually eliminated |
| 3148 | after the listing is made. | 3148 | after the listing is made. |
| 3149 | Optional argument BUFFER specifies a buffer to use, instead of | 3149 | Optional argument BUFFER specifies a buffer to use, instead of |
| 3150 | \"*Process List*\". | 3150 | \"*Process List*\". |
| 3151 | The return value is always nil." | 3151 | The return value is always nil. |
| 3152 | |||
| 3153 | This function lists only processes that were launched by Emacs. To | ||
| 3154 | see other processes running on the system, use `list-system-processes'." | ||
| 3152 | (interactive) | 3155 | (interactive) |
| 3153 | (or (fboundp 'process-list) | 3156 | (or (fboundp 'process-list) |
| 3154 | (error "Asynchronous subprocesses are not supported on this system")) | 3157 | (error "Asynchronous subprocesses are not supported on this system")) |
| @@ -5530,8 +5533,7 @@ Mode' for details." | |||
| 5530 | (visual-line-mode 1)) | 5533 | (visual-line-mode 1)) |
| 5531 | 5534 | ||
| 5532 | (define-globalized-minor-mode global-visual-line-mode | 5535 | (define-globalized-minor-mode global-visual-line-mode |
| 5533 | visual-line-mode turn-on-visual-line-mode | 5536 | visual-line-mode turn-on-visual-line-mode) |
| 5534 | :lighter " vl") | ||
| 5535 | 5537 | ||
| 5536 | 5538 | ||
| 5537 | (defun transpose-chars (arg) | 5539 | (defun transpose-chars (arg) |