diff options
author | Daniel Colascione <dancol@dancol.org> | 2015-01-15 20:51:48 -0800 |
---|---|---|
committer | Daniel Colascione <dancol@dancol.org> | 2015-01-15 20:52:08 -0800 |
commit | 0ecb1eb988d25d3511e11ac39e05550cec57dc3f (patch) | |
tree | a6e0c04df54273cce9f019ecaf41a036d4978538 /lisp/cus-start.el | |
parent | 0adc75af1833cd46aab339ce7f1ca5d6919c70af (diff) | |
download | emacs-0ecb1eb988d25d3511e11ac39e05550cec57dc3f.tar.gz |
Make `ring-bell-function' customizable.
* lisp/cus-start.el (all): Make `ring-bell-function' customizable.
Diffstat (limited to 'lisp/cus-start.el')
-rw-r--r-- | lisp/cus-start.el | 6 |
1 files changed, 6 insertions, 0 deletions
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 "21.1") ;; term.c (visible-cursor cursor boolean "22.1") + ;; terminal.c + (ring-bell-function display + (choice + (const :tag "Default" nil) + (const :tag "Silent" ignore) + function)) ;; undo.c (undo-limit undo integer) (undo-strong-limit undo integer) |