From f8a5c26d96f2f731aa2961a084f935c880ebc5de Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Thu, 20 Feb 2014 11:02:36 +0100 Subject: [PATCH] alias: change default command for alias /beep to "/print -beep" --- ChangeLog | 1 + src/plugins/alias/alias-config.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 15babc1e7..a7a062042 100644 --- a/ChangeLog +++ b/ChangeLog @@ -25,6 +25,7 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes] * core: display a warning in case of inconsistency between the options weechat.look.save_{config|layout}_on_exit * api: add integer return code for functions hook_{signal|hsignal}_send +* alias: change default command for alias /beep to "/print -beep" * guile: fix module used after unload of a script * irc: fix parsing of nick in host when '!' is not found (bug #41640) * lua: fix interpreter used after unload of a script diff --git a/src/plugins/alias/alias-config.c b/src/plugins/alias/alias-config.c index a81c3a30d..a0d4e3149 100644 --- a/src/plugins/alias/alias-config.c +++ b/src/plugins/alias/alias-config.c @@ -36,7 +36,7 @@ char *alias_default_list[][2] = { "AME", "allchan /me" }, { "AMSG", "allchan /msg *" }, { "ANICK", "allserv /nick" }, - { "BEEP", "print -stderr \\a" }, + { "BEEP", "print -beep" }, { "BYE", "quit" }, { "C", "buffer clear" }, { "CL", "buffer clear" },