aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorGlenn Morris2018-10-03 09:23:16 -0700
committerGlenn Morris2018-10-03 09:23:16 -0700
commit48adb87bcb0f27e2d18fc6523c472af4916d5884 (patch)
tree0299f7ce336e0d21fe902af6809798e3bb2045a7 /etc
parent51f0cccdde9bd1679e20f35d30e39e872ce6513a (diff)
parent7296b6fbf27aeae76ea63ab2d9d9f2e46491b971 (diff)
downloademacs-48adb87bcb0f27e2d18fc6523c472af4916d5884.tar.gz
emacs-48adb87bcb0f27e2d18fc6523c472af4916d5884.zip
Merge from origin/emacs-26
7296b6f Improve cl-do, cl-do* docstrings d416109 Avoid returning early in 'while-no-input' due to subprocesses e8a4d94 Cleanup when opening a new terminal fails. (Bug#32794) # Conflicts: # etc/NEWS
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS.2610
1 files changed, 10 insertions, 0 deletions
diff --git a/etc/NEWS.26 b/etc/NEWS.26
index 19dd433cda4..94bb45c6feb 100644
--- a/etc/NEWS.26
+++ b/etc/NEWS.26
@@ -110,6 +110,16 @@ be removed prior using the changed 'shadow-*' commands.
110The old name is an alias of the new name. Future Emacs version will 110The old name is an alias of the new name. Future Emacs version will
111obsolete it. 111obsolete it.
112 112
113---
114** 'while-no-input' does not return due to input from subprocesses.
115Input that arrived from subprocesses while some code executed inside
116the 'while-no-input' form injected an internal buffer-switch event
117that counted as input and would cause 'while-no-input' to return,
118perhaps prematurely. These buffer-switch events are now by default
119ignored by 'while-no-input'; if you need to get the old behavior,
120remove 'buffer-switch' from the list of events in
121'while-no-input-ignore-events'.
122
113 123
114* Lisp Changes in Emacs 26.2 124* Lisp Changes in Emacs 26.2
115 125