aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cedet/ede
diff options
context:
space:
mode:
authorGlenn Morris2016-06-09 20:13:12 -0400
committerGlenn Morris2016-06-09 20:13:12 -0400
commitf9af5eddc835bbed2ca100838f8f294901b60c2d (patch)
tree35c399aced8ccdc46ed933a76d297d3572887db4 /lisp/cedet/ede
parent1c09423880e1c48d6ba02a196430e829d1d87d57 (diff)
downloademacs-f9af5eddc835bbed2ca100838f8f294901b60c2d.tar.gz
emacs-f9af5eddc835bbed2ca100838f8f294901b60c2d.zip
Remove obsolete leading * from defcustom, defface doc strings.
* lisp/cedet/ede/linux.el, lisp/cedet/ede/project-am.el: * lisp/cedet/ede/simple.el, lisp/cedet/semantic/bovine/c.el: * lisp/cedet/semantic/complete.el, lisp/cedet/semantic/db.el: * lisp/cedet/semantic/decorate/include.el: * lisp/cedet/semantic/decorate/mode.el, lisp/cedet/semantic/format.el: * lisp/cedet/semantic/ia.el, lisp/cedet/semantic/idle.el: * lisp/cedet/semantic/imenu.el, lisp/cedet/semantic/lex-spp.el: * lisp/cedet/semantic/mru-bookmark.el, lisp/cedet/semantic/sb.el: * lisp/cedet/srecode/fields.el, lisp/ecomplete.el: * lisp/gnus/gnus-agent.el, lisp/gnus/gnus-art.el: * lisp/gnus/gnus-async.el, lisp/gnus/gnus-cache.el: * lisp/gnus/gnus-cite.el, lisp/gnus/gnus-delay.el: * lisp/gnus/gnus-diary.el, lisp/gnus/gnus-dup.el: * lisp/gnus/gnus-fun.el, lisp/gnus/gnus-group.el: * lisp/gnus/gnus-kill.el, lisp/gnus/gnus-msg.el: * lisp/gnus/gnus-picon.el, lisp/gnus/gnus-salt.el: * lisp/gnus/gnus-score.el, lisp/gnus/gnus-start.el: * lisp/gnus/gnus-sum.el, lisp/gnus/gnus-topic.el: * lisp/gnus/gnus-util.el, lisp/gnus/gnus-uu.el, lisp/gnus/gnus-win.el: * lisp/gnus/gnus.el, lisp/gnus/mail-source.el, lisp/gnus/message.el: * lisp/gnus/mm-url.el, lisp/gnus/mm-uu.el, lisp/gnus/mml.el: * lisp/gnus/nndiary.el, lisp/gnus/nnir.el, lisp/gnus/nnmail.el: * lisp/gnus/smiley.el, lisp/gnus/smime.el, lisp/mail/mail-extr.el: * lisp/mh-e/mh-e.el, lisp/net/mailcap.el, lisp/net/pop3.el: * lisp/net/starttls.el, lisp/progmodes/cc-vars.el: * lisp/progmodes/cperl-mode.el, test/manual/cedet/tests/test.el: Remove obsolete leading * from defcustom, defface doc strings.
Diffstat (limited to 'lisp/cedet/ede')
-rw-r--r--lisp/cedet/ede/linux.el4
-rw-r--r--lisp/cedet/ede/project-am.el6
-rw-r--r--lisp/cedet/ede/simple.el4
3 files changed, 7 insertions, 7 deletions
diff --git a/lisp/cedet/ede/linux.el b/lisp/cedet/ede/linux.el
index 010bfde54dc..d7ea35a43f7 100644
--- a/lisp/cedet/ede/linux.el
+++ b/lisp/cedet/ede/linux.el
@@ -64,12 +64,12 @@
64 64
65 65
66(defcustom project-linux-compile-target-command (concat ede-make-command " -k -C %s SUBDIRS=%s") 66(defcustom project-linux-compile-target-command (concat ede-make-command " -k -C %s SUBDIRS=%s")
67 "*Default command used to compile a target." 67 "Default command used to compile a target."
68 :group 'project-linux 68 :group 'project-linux
69 :type 'string) 69 :type 'string)
70 70
71(defcustom project-linux-compile-project-command (concat ede-make-command " -k -C %s") 71(defcustom project-linux-compile-project-command (concat ede-make-command " -k -C %s")
72 "*Default command used to compile a project." 72 "Default command used to compile a project."
73 :group 'project-linux 73 :group 'project-linux
74 :type 'string) 74 :type 'string)
75 75
diff --git a/lisp/cedet/ede/project-am.el b/lisp/cedet/ede/project-am.el
index 715f3cf46d5..72c0bc60107 100644
--- a/lisp/cedet/ede/project-am.el
+++ b/lisp/cedet/ede/project-am.el
@@ -53,17 +53,17 @@
53 ) 53 )
54 54
55(defcustom project-am-compile-project-command nil 55(defcustom project-am-compile-project-command nil
56 "*Default command used to compile a project." 56 "Default command used to compile a project."
57 :group 'project-am 57 :group 'project-am
58 :type '(choice (const nil) string)) 58 :type '(choice (const nil) string))
59 59
60(defcustom project-am-compile-target-command (concat ede-make-command " -k %s") 60(defcustom project-am-compile-target-command (concat ede-make-command " -k %s")
61 "*Default command used to compile a project." 61 "Default command used to compile a project."
62 :group 'project-am 62 :group 'project-am
63 :type 'string) 63 :type 'string)
64 64
65(defcustom project-am-debug-target-function 'gdb 65(defcustom project-am-debug-target-function 'gdb
66 "*Default Emacs command used to debug a target." 66 "Default Emacs command used to debug a target."
67 :group 'project-am 67 :group 'project-am
68 :type 'function) ; make this be a list some day 68 :type 'function) ; make this be a list some day
69 69
diff --git a/lisp/cedet/ede/simple.el b/lisp/cedet/ede/simple.el
index 380c8dbc586..74b6e056a2a 100644
--- a/lisp/cedet/ede/simple.el
+++ b/lisp/cedet/ede/simple.el
@@ -55,12 +55,12 @@
55 t) 55 t)
56 56
57(defcustom ede-simple-save-directory "~/.ede" 57(defcustom ede-simple-save-directory "~/.ede"
58 "*Directory where simple EDE project overlays are saved." 58 "Directory where simple EDE project overlays are saved."
59 :group 'ede 59 :group 'ede
60 :type 'directory) 60 :type 'directory)
61 61
62(defcustom ede-simple-save-file-name "ProjSimple.ede" 62(defcustom ede-simple-save-file-name "ProjSimple.ede"
63 "*File name used for simple project wrappers." 63 "File name used for simple project wrappers."
64 :group 'ede 64 :group 'ede
65 :type 'string) 65 :type 'string)
66 66