From b77723a5f371ce0aa4027c6d1c5c831eef94e01d Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 11 Apr 2019 16:25:06 +0300 Subject: Fix an outdated URL in a comment * src/emacs.c: Fix reference to Cocoa CoreFoundation Release Notes. (Bug#35225) --- src/emacs.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/emacs.c b/src/emacs.c index ba57da7213a..41a93279418 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -158,9 +158,14 @@ static uprintmax_t heap_bss_diff; /* To run as a background daemon under Cocoa or Windows, we must do a fork+exec, not a simple fork. - On Cocoa, CoreFoundation lib fails in forked process: + On Cocoa, CoreFoundation lib fails in forked process, see Mac OS X + Leopard Developer Release Notes for CoreFoundation Framework: + http://developer.apple.com/ReleaseNotes/ - CoreFoundation/CoreFoundation.html) + CoreFoundation/CoreFoundation.html + + Note: the above is no longer available on-line, but it can be found + via the "Wayback machine", https://web.archive.org. On Windows, a Cygwin fork child cannot access the USER subsystem. -- cgit v1.2.1 From 85829363f728c410e33ffdc3839202977b2115cc Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 11 Apr 2019 17:00:44 +0300 Subject: Improve documentation of 'read-command' * src/minibuf.c (Fread_command): Document the return value when DEFAULT-VALUE is nil and the user enters nothing. * doc/lispref/minibuf.texi (High-Level Completion): Document the printed representation of a symbol whose name is empty. (Bug#3522) --- src/minibuf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/minibuf.c b/src/minibuf.c index 6964f350ffe..a33ddf40a1c 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1054,7 +1054,8 @@ the current input method and the setting of`enable-multibyte-characters'. */) DEFUN ("read-command", Fread_command, Sread_command, 1, 2, 0, doc: /* Read the name of a command and return as a symbol. Prompt with PROMPT. By default, return DEFAULT-VALUE or its first element -if it is a list. */) +if it is a list. If DEFAULT-VALUE is omitted or nil, and the user enters +null input, return a symbol whose name is an empty string. */) (Lisp_Object prompt, Lisp_Object default_value) { Lisp_Object name, default_string; -- cgit v1.2.1