summaryrefslogtreecommitdiff
path: root/src/fe-common/core
diff options
context:
space:
mode:
authorLemonBoy <LemonBoy@users.noreply.github.com>2016-11-29 22:13:53 +0100
committerGitHub <noreply@github.com>2016-11-29 22:13:53 +0100
commit5efb3077d5c055475644dac8c5e0aa48b308d456 (patch)
treef9d68bc4a7b42bcbba5689a2ff6a56bdfc5d8930 /src/fe-common/core
parent22ce6637c7acbdda27395521cc7dce23fa98b8b9 (diff)
parent6a6196eebe791e193d5f625c0a87f381b4100f30 (diff)
downloadirssi-5efb3077d5c055475644dac8c5e0aa48b308d456.zip
Merge pull request #565 from ahf/bug/524
Kill bell_beeps.
Diffstat (limited to 'src/fe-common/core')
-rw-r--r--src/fe-common/core/fe-common-core.c1
-rw-r--r--src/fe-common/core/formats.c6
2 files changed, 1 insertions, 6 deletions
diff --git a/src/fe-common/core/fe-common-core.c b/src/fe-common/core/fe-common-core.c
index fd0e6cf0..512fc84c 100644
--- a/src/fe-common/core/fe-common-core.c
+++ b/src/fe-common/core/fe-common-core.c
@@ -150,7 +150,6 @@ void fe_common_core_init(void)
settings_add_level("lookandfeel", "timestamp_level", "ALL");
settings_add_time("lookandfeel", "timestamp_timeout", "0");
- settings_add_bool("lookandfeel", "bell_beeps", FALSE);
settings_add_level("lookandfeel", "beep_msg_level", "");
settings_add_bool("lookandfeel", "beep_when_window_active", TRUE);
settings_add_bool("lookandfeel", "beep_when_away", TRUE);
diff --git a/src/fe-common/core/formats.c b/src/fe-common/core/formats.c
index 9aa7698d..a58d839a 100644
--- a/src/fe-common/core/formats.c
+++ b/src/fe-common/core/formats.c
@@ -1224,11 +1224,7 @@ void format_send_to_gui(TEXT_DEST_REC *dest, const char *text)
}
}
- if (type == 7) {
- /* bell */
- if (settings_get_bool("bell_beeps"))
- signal_emit("beep", 0);
- } else if (type == 4 && *ptr == FORMAT_STYLE_CLRTOEOL) {
+ if (type == 4 && *ptr == FORMAT_STYLE_CLRTOEOL) {
/* clear to end of line */
flags |= GUI_PRINT_FLAG_CLRTOEOL;
}