aboutsummaryrefslogtreecommitdiffhomepage
path: root/input_common.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-04-03 17:26:02 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-04-03 17:26:02 -0700
commitd9445f04b13c1d1523cd152cfb1d163702e66c14 (patch)
treec4ab9cca04433a1c6eaa2e3fff076b7cdda2565b /input_common.h
parent1543d02f96bdf96a067e96742577ea740dda4d89 (diff)
Use the new input_common_add_callback mechanism to not execute callbacks while signals are blocked. Should fix https://github.com/fish-shell/fish-shell/issues/608
Diffstat (limited to 'input_common.h')
-rw-r--r--input_common.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/input_common.h b/input_common.h
index 02b7359e..1041e3fe 100644
--- a/input_common.h
+++ b/input_common.h
@@ -56,6 +56,4 @@ void input_common_unreadch(wint_t ch);
/** Adds a callback to be invoked at the next turn of the "event loop." The callback function will be invoked and passed arg. */
void input_common_add_callback(void (*callback)(void *), void *arg);
-
-
#endif