diff options
| author | Daniel Colascione <dan.colascione@gmail.com> | 2011-04-26 04:26:05 -0700 | 
|---|---|---|
| committer | Daniel Colascione <dan.colascione@gmail.com> | 2011-04-26 04:26:05 -0700 | 
| commit | 0438ce915d3408496eae848c351c2c7dde896b7b (patch) | |
| tree | d45f273d397b1e8cc89068b320a2ee2d5b8e9d67 /lisp/cus-start.el | |
| parent | 8f91bf934523d47a9f57919733d6093b2484e284 (diff) | |
| download | emacs-0438ce915d3408496eae848c351c2c7dde896b7b.tar.gz | |
Implement debug-on-event
Diffstat (limited to 'lisp/cus-start.el')
| -rw-r--r-- | lisp/cus-start.el | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 1188d37150a..6113a4321c5 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -259,6 +259,11 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of  	     (suggest-key-bindings keyboard (choice (const :tag "off" nil)  						    (integer :tag "time" 2)  						    (other :tag "on"))) +             (debug-on-event debug +                             (choice (const :tag "None" nil) +                                     (const :tag "When sent SIGUSR1" sigusr1) +                                     (const :tag "When sent SIGUSR2" sigusr2)) +                             "24.1")  ;; This is not good news because it will use the wrong  ;; version-specific directories when you upgrade.  We need | 
