diff options
author | Glenn Morris <rgm@gnu.org> | 2016-01-30 11:48:18 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2016-01-30 11:51:10 -0800 |
commit | 0fac75fed1c7d61858bef15e951bf9a0835d5bac (patch) | |
tree | bf2d4471a9933147fa22e717e55f82ef18483f6a /lisp/cedet | |
parent | 2df0e04296b73d212875ce46c8734ec255496a78 (diff) |
Improve the custom type of some user options.
* lisp/desktop.el (desktop-minor-mode-table):
* lisp/man.el (Man-frame-parameters):
* lisp/midnight.el (midnight-delay):
* lisp/speedbar.el (speedbar-select-frame-method):
* lisp/tooltip.el (tooltip-frame-parameters):
* lisp/tree-widget.el (tree-widget-space-width):
* lisp/type-break.el (type-break-keystroke-threshold):
* lisp/woman.el (woman-imenu-generic-expression):
* lisp/cedet/ede.el (ede-debug-program-function):
* lisp/cedet/ede/project-am.el (project-am-debug-target-function):
* lisp/emulation/viper-keym.el (viper-toggle-key):
* lisp/erc/erc-networks.el (erc-server-alist):
* lisp/gnus/message.el (message-deletable-headers, message-signature):
* lisp/mail/mailalias.el (mail-directory-stream):
* lisp/play/tetris.el (tetris-x-colors):
* lisp/progmodes/gud.el (gud-tooltip-modes): Improve custom type.
Diffstat (limited to 'lisp/cedet')
-rw-r--r-- | lisp/cedet/ede.el | 2 | ||||
-rw-r--r-- | lisp/cedet/ede/project-am.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cedet/ede.el b/lisp/cedet/ede.el index 41d6c8903b..f013d4302b 100644 --- a/lisp/cedet/ede.el +++ b/lisp/cedet/ede.el @@ -96,7 +96,7 @@ target willing to take the file. `never' means never perform the check." (defcustom ede-debug-program-function 'gdb "Default Emacs command used to debug a target." :group 'ede - :type 'sexp) ; make this be a list of options some day + :type 'function) ; make this be a list of options some day (defcustom ede-project-directories nil "Directories in which EDE may search for project files. diff --git a/lisp/cedet/ede/project-am.el b/lisp/cedet/ede/project-am.el index e1b0c3d74f..715f3cf46d 100644 --- a/lisp/cedet/ede/project-am.el +++ b/lisp/cedet/ede/project-am.el @@ -65,7 +65,7 @@ (defcustom project-am-debug-target-function 'gdb "*Default Emacs command used to debug a target." :group 'project-am - :type 'sexp) ; make this be a list some day + :type 'function) ; make this be a list some day (defconst project-am-type-alist '(("bin" project-am-program "bin_PROGRAMS" t) |