diff options
author | Glenn Morris <rgm@gnu.org> | 2013-12-27 17:24:15 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-12-27 17:24:15 -0800 |
commit | 9c61f806fb122612fc7bc1ddb2cb5ea00e5621f1 (patch) | |
tree | 8e97921e57ec8c8f0284170a179e0a72dec02941 /lisp/cedet/ede | |
parent | 254541300559122771cf4c0449a2b8ff78ab3eb7 (diff) | |
download | emacs-9c61f806fb122612fc7bc1ddb2cb5ea00e5621f1.tar.gz |
Misc small custom fixes
The value of defcustom's const should not be quoted!
* lisp/desktop.el (desktop-restore-in-current-display):
* lisp/newcomment.el (comment-empty-lines):
* lisp/progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
(idlwave-pad-keyword):
* lisp/progmodes/tcl.el (tcl-tab-always-indent):
* lisp/textmodes/reftex-vars.el (reftex-index-default-tag):
* lisp/elec-pair.el (electric-pair-skip-whitespace):
* lisp/progmodes/cfengine.el (cfengine-cf-promises):
* lisp/cedet/ede/linux.el (project-linux-build-directory-default)
(project-linux-architecture-default):
* lisp/erc/erc-button.el (erc-button-alist):
* lisp/gnus/auth-source.el (auth-sources):
* lisp/gnus/nnmairix.el (nnmairix-propagate-marks-upon-close):
* lisp/url/url-history.el (url-history-track):
* lisp/url/url-vars.el (url-honor-refresh-requests):
Fix custom types.
* lisp/net/tls.el (tls-certtool-program): Fix default value.
Diffstat (limited to 'lisp/cedet/ede')
-rw-r--r-- | lisp/cedet/ede/linux.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/cedet/ede/linux.el b/lisp/cedet/ede/linux.el index 8a2b7c6686d..0d89f0ece18 100644 --- a/lisp/cedet/ede/linux.el +++ b/lisp/cedet/ede/linux.el @@ -51,14 +51,14 @@ (defcustom project-linux-build-directory-default 'ask "Build directory." :group 'project-linux - :type '(choice (const :tag "Same as source directory" 'same) - (const :tag "Ask the user" 'ask))) + :type '(choice (const :tag "Same as source directory" same) + (const :tag "Ask the user" ask))) (defcustom project-linux-architecture-default 'ask "Target architecture to assume when not auto-detected." :group 'project-linux :type '(choice (string :tag "Architecture name") - (const :tag "Ask the user" 'ask))) + (const :tag "Ask the user" ask))) (defcustom project-linux-compile-target-command (concat ede-make-command " -k -C %s SUBDIRS=%s") |