aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2024-12-22 18:12:21 +0300
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2024-12-22 19:33:48 +0300
commitf4fd6de46a8d66032efd6fa86a5674edd0ec839f (patch)
treef77c1ddd20567db4857ad4151ff9da06928b933f
parentc293f725e55661ae690b52d5e8339e48b07a6a85 (diff)
downloadsciteco-f4fd6de46a8d66032efd6fa86a5674edd0ec839f.tar.gz
fixed indention in interface-curses/interface.c
This is a purely cosmetic change.
-rw-r--r--src/interface-curses/interface.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/interface-curses/interface.c b/src/interface-curses/interface.c
index b9ca516..9e4f947 100644
--- a/src/interface-curses/interface.c
+++ b/src/interface-curses/interface.c
@@ -1706,15 +1706,15 @@ teco_interface_event_loop_iter(void)
return;
#ifdef __PDCURSES__
- /*
- * Especially PDCurses/WinGUI likes to report two keypresses,
- * e.g. for CTRL+Shift+6 (CTRL+^).
- * Make sure we don't filter out AltGr, which may be reported as CTRL+ALT.
- */
- if ((PDC_get_key_modifiers() &
- (PDC_KEY_MODIFIER_CONTROL | PDC_KEY_MODIFIER_ALT)) == PDC_KEY_MODIFIER_CONTROL &&
- !TECO_IS_CTL(key))
- return;
+ /*
+ * Especially PDCurses/WinGUI likes to report two keypresses,
+ * e.g. for CTRL+Shift+6 (CTRL+^).
+ * Make sure we don't filter out AltGr, which may be reported as CTRL+ALT.
+ */
+ if ((PDC_get_key_modifiers() &
+ (PDC_KEY_MODIFIER_CONTROL | PDC_KEY_MODIFIER_ALT)) == PDC_KEY_MODIFIER_CONTROL &&
+ !TECO_IS_CTL(key))
+ return;
#endif
/*