diff options
| author | Eli Zaretskii | 2024-09-07 18:38:40 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2024-09-07 18:38:40 +0300 |
| commit | 4f044d0d3df019e9a7717b443fe4b4c172854c7c (patch) | |
| tree | e0aff0ee4039959642ff696269382bda7c1046cd /src | |
| parent | b420e149b1ebc41dd183ab460930d78321e2e339 (diff) | |
| download | emacs-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.c | 7 |
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'. | |||
| 11913 | After resumption run the normal hook `suspend-resume-hook'. | 11913 | After resumption run the normal hook `suspend-resume-hook'. |
| 11914 | 11914 | ||
| 11915 | Some operating systems cannot stop the Emacs process and resume it later. | 11915 | Some operating systems cannot stop the Emacs process and resume it later. |
| 11916 | On such systems, Emacs starts a subshell instead of suspending. */) | 11916 | On such systems, Emacs starts a subshell instead of suspending. |
| 11917 | |||
| 11918 | On some operating systems, stuffing characters into terminal input | ||
| 11919 | buffer requires special privileges or is not supported at all. | ||
| 11920 | On such systems, calling this function with non-nil STUFFSTRING might | ||
| 11921 | either 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 (); |