diff options
| author | Anders Lindgren | 2015-10-28 12:09:51 +0100 |
|---|---|---|
| committer | Anders Lindgren | 2015-10-28 12:09:51 +0100 |
| commit | cc587a3539612d250d222363b18d15258e33f82a (patch) | |
| tree | 00c74927ef3da99c7226cbaf586d439e0236b85c /src | |
| parent | 590449f3d87f8f43eb0a852233e8945ecbe1c6aa (diff) | |
| parent | 64c2bfbc4f5daba2ee55acb58a2929070a846b6e (diff) | |
| download | emacs-cc587a3539612d250d222363b18d15258e33f82a.tar.gz emacs-cc587a3539612d250d222363b18d15258e33f82a.zip | |
Merge branch 'master' of ssh://git.sv.gnu.org/srv/git/emacs
Diffstat (limited to 'src')
| -rw-r--r-- | src/lread.c | 6 | ||||
| -rw-r--r-- | src/process.c | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/src/lread.c b/src/lread.c index a98fa6199f1..1119f3fdfd4 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -4479,8 +4479,10 @@ were read in. */); | |||
| 4479 | 4479 | ||
| 4480 | DEFVAR_LISP ("load-path", Vload_path, | 4480 | DEFVAR_LISP ("load-path", Vload_path, |
| 4481 | doc: /* List of directories to search for files to load. | 4481 | doc: /* List of directories to search for files to load. |
| 4482 | Each element is a string (directory name) or nil (meaning `default-directory'). | 4482 | Each element is a string (directory file name) or nil (meaning |
| 4483 | Initialized during startup as described in Info node `(elisp)Library Search'. */); | 4483 | `default-directory'). Initialized during startup as described in Info |
| 4484 | node `(elisp)Library Search'. Use `directory-file-name' when adding items | ||
| 4485 | to this path. */); | ||
| 4484 | 4486 | ||
| 4485 | DEFVAR_LISP ("load-suffixes", Vload_suffixes, | 4487 | DEFVAR_LISP ("load-suffixes", Vload_suffixes, |
| 4486 | doc: /* List of suffixes for (compiled or source) Emacs Lisp files. | 4488 | doc: /* List of suffixes for (compiled or source) Emacs Lisp files. |
diff --git a/src/process.c b/src/process.c index dc93b86cee2..ed1d59d01b0 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -7176,8 +7176,10 @@ setup_process_coding_systems (Lisp_Object process) | |||
| 7176 | } | 7176 | } |
| 7177 | 7177 | ||
| 7178 | DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0, | 7178 | DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0, |
| 7179 | doc: /* Return the (or a) process associated with BUFFER. | 7179 | doc: /* Return the (or a) live process associated with BUFFER. |
| 7180 | BUFFER may be a buffer or the name of one. */) | 7180 | BUFFER may be a buffer or the name of one. |
| 7181 | Return nil if all processes associated with BUFFER have been | ||
| 7182 | deleted or killed. */) | ||
| 7181 | (register Lisp_Object buffer) | 7183 | (register Lisp_Object buffer) |
| 7182 | { | 7184 | { |
| 7183 | #ifdef subprocesses | 7185 | #ifdef subprocesses |