aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2024-09-07 18:38:40 +0300
committerEli Zaretskii2024-09-07 18:38:40 +0300
commit4f044d0d3df019e9a7717b443fe4b4c172854c7c (patch)
treee0aff0ee4039959642ff696269382bda7c1046cd /src
parentb420e149b1ebc41dd183ab460930d78321e2e339 (diff)
downloademacs-4f044d0d3df019e9a7717b443fe4b4c172854c7c.tar.gz
emacs-4f044d0d3df019e9a7717b443fe4b4c172854c7c.zip
; Improve documentation of 'suspend-emacs'
* doc/lispref/os.texi (Suspending Emacs): * src/keyboard.c (Fsuspend_emacs): Document possible failures in sending STUFFSTRING to the shell. (Bug#73100).
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index e7b0af9f63c..c5c761955fb 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -11913,7 +11913,12 @@ Before suspending, run the normal hook `suspend-hook'.
11913After resumption run the normal hook `suspend-resume-hook'. 11913After resumption run the normal hook `suspend-resume-hook'.
11914 11914
11915Some operating systems cannot stop the Emacs process and resume it later. 11915Some operating systems cannot stop the Emacs process and resume it later.
11916On such systems, Emacs starts a subshell instead of suspending. */) 11916On such systems, Emacs starts a subshell instead of suspending.
11917
11918On some operating systems, stuffing characters into terminal input
11919buffer requires special privileges or is not supported at all.
11920On such systems, calling this function with non-nil STUFFSTRING might
11921either signal an error or silently fail to stuff the characters. */)
11917 (Lisp_Object stuffstring) 11922 (Lisp_Object stuffstring)
11918{ 11923{
11919 specpdl_ref count = SPECPDL_INDEX (); 11924 specpdl_ref count = SPECPDL_INDEX ();