aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Colascione2015-01-15 20:51:48 -0800
committerDaniel Colascione2015-01-15 20:52:08 -0800
commit0ecb1eb988d25d3511e11ac39e05550cec57dc3f (patch)
treea6e0c04df54273cce9f019ecaf41a036d4978538
parent0adc75af1833cd46aab339ce7f1ca5d6919c70af (diff)
downloademacs-0ecb1eb988d25d3511e11ac39e05550cec57dc3f.tar.gz
emacs-0ecb1eb988d25d3511e11ac39e05550cec57dc3f.zip
Make `ring-bell-function' customizable.
* lisp/cus-start.el (all): Make `ring-bell-function' customizable.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/cus-start.el6
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 908c02788cf..fbfd68e8730 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12015-01-16 Daniel Colascione <dancol@dancol.org>
2
3 * cus-start.el (all): Make `ring-bell-function' customizable.
4
12015-01-16 Dmitry Gutov <dgutov@yandex.ru> 52015-01-16 Dmitry Gutov <dgutov@yandex.ru>
2 6
3 * vc/vc-svn.el (vc-svn-dir-status-files): Pass t as 7 * vc/vc-svn.el (vc-svn-dir-status-files): Pass t as
diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index 299b18d0118..71506cb680e 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -421,6 +421,12 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of
421 "21.1") 421 "21.1")
422 ;; term.c 422 ;; term.c
423 (visible-cursor cursor boolean "22.1") 423 (visible-cursor cursor boolean "22.1")
424 ;; terminal.c
425 (ring-bell-function display
426 (choice
427 (const :tag "Default" nil)
428 (const :tag "Silent" ignore)
429 function))
424 ;; undo.c 430 ;; undo.c
425 (undo-limit undo integer) 431 (undo-limit undo integer)
426 (undo-strong-limit undo integer) 432 (undo-strong-limit undo integer)