aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorPhillip Lord2019-01-05 20:31:15 +0100
committerPhillip Lord2019-01-22 21:46:03 +0000
commit7b31de4d107302ed91ce7519cd778b340a9880ee (patch)
treeefd0ca3ab5066991c8b6bafb6fceaa3d8c441a18 /etc
parentfd943124439b7644392919bca8bc2a77e6316d92 (diff)
downloademacs-7b31de4d107302ed91ce7519cd778b340a9880ee.tar.gz
emacs-7b31de4d107302ed91ce7519cd778b340a9880ee.zip
Add hook for all events
* lisp/subr.el (input-event-functions): Add input-event-functions * src/keyboard.c (read_char): Call input-event-functions on all hooks
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 21187474a28..b0bbaeb6b0f 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1189,11 +1189,13 @@ removed.
1189 1189
1190* Lisp Changes in Emacs 27.1 1190* Lisp Changes in Emacs 27.1
1191 1191
1192+++ 1192
1193** 'self-insert-command' takes the char to insert as (optional) argument. 1193** 'self-insert-command' takes the char to insert as (optional) argument.
1194 1194
1195** 'lookup-key' can take a list of keymaps as argument. 1195** 'lookup-key' can take a list of keymaps as argument.
1196 1196
1197** New hook `input-event-functions` run whenever a user-input is read.
1198
1197+++ 1199+++
1198** 'condition-case' now accepts 't' to match any error symbol. 1200** 'condition-case' now accepts 't' to match any error symbol.
1199 1201