diff options
| author | Glenn Morris | 2016-06-09 20:13:12 -0400 |
|---|---|---|
| committer | Glenn Morris | 2016-06-09 20:13:12 -0400 |
| commit | f9af5eddc835bbed2ca100838f8f294901b60c2d (patch) | |
| tree | 35c399aced8ccdc46ed933a76d297d3572887db4 /lisp/cedet | |
| parent | 1c09423880e1c48d6ba02a196430e829d1d87d57 (diff) | |
| download | emacs-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')
| -rw-r--r-- | lisp/cedet/ede/linux.el | 4 | ||||
| -rw-r--r-- | lisp/cedet/ede/project-am.el | 6 | ||||
| -rw-r--r-- | lisp/cedet/ede/simple.el | 4 | ||||
| -rw-r--r-- | lisp/cedet/semantic/bovine/c.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/complete.el | 8 | ||||
| -rw-r--r-- | lisp/cedet/semantic/db.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/decorate/include.el | 8 | ||||
| -rw-r--r-- | lisp/cedet/semantic/decorate/mode.el | 6 | ||||
| -rw-r--r-- | lisp/cedet/semantic/format.el | 4 | ||||
| -rw-r--r-- | lisp/cedet/semantic/ia.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/idle.el | 6 | ||||
| -rw-r--r-- | lisp/cedet/semantic/imenu.el | 20 | ||||
| -rw-r--r-- | lisp/cedet/semantic/lex-spp.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/mru-bookmark.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/sb.el | 6 | ||||
| -rw-r--r-- | lisp/cedet/srecode/fields.el | 2 |
16 files changed, 42 insertions, 42 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 | ||
diff --git a/lisp/cedet/semantic/bovine/c.el b/lisp/cedet/semantic/bovine/c.el index 821f05a5732..904410f6cf3 100644 --- a/lisp/cedet/semantic/bovine/c.el +++ b/lisp/cedet/semantic/bovine/c.el | |||
| @@ -296,7 +296,7 @@ Return the defined symbol as a special spp lex token." | |||
| 296 | ;;; Conditional Skipping | 296 | ;;; Conditional Skipping |
| 297 | ;; | 297 | ;; |
| 298 | (defcustom semantic-c-obey-conditional-section-parsing-flag t | 298 | (defcustom semantic-c-obey-conditional-section-parsing-flag t |
| 299 | "*Non-nil means to interpret preprocessor #if sections. | 299 | "Non-nil means to interpret preprocessor #if sections. |
| 300 | This implies that some blocks of code will not be parsed based on the | 300 | This implies that some blocks of code will not be parsed based on the |
| 301 | values of the conditions in the #if blocks." | 301 | values of the conditions in the #if blocks." |
| 302 | :group 'c | 302 | :group 'c |
diff --git a/lisp/cedet/semantic/complete.el b/lisp/cedet/semantic/complete.el index de762326c3e..14b5f3f016c 100644 --- a/lisp/cedet/semantic/complete.el +++ b/lisp/cedet/semantic/complete.el | |||
| @@ -568,7 +568,7 @@ if INLINE, then completion is happening inline in a buffer." | |||
| 568 | (:underline "yellow")) | 568 | (:underline "yellow")) |
| 569 | (((class color) (background light)) | 569 | (((class color) (background light)) |
| 570 | (:underline "brown"))) | 570 | (:underline "brown"))) |
| 571 | "*Face used to show the region being completed inline. | 571 | "Face used to show the region being completed inline. |
| 572 | The face is used in `semantic-complete-inline-tag-engine'." | 572 | The face is used in `semantic-complete-inline-tag-engine'." |
| 573 | :group 'semantic-faces) | 573 | :group 'semantic-faces) |
| 574 | 574 | ||
| @@ -1370,7 +1370,7 @@ This object type doesn't do focus, so will never have a focus object." | |||
| 1370 | ;; Traditional displayor | 1370 | ;; Traditional displayor |
| 1371 | (defcustom semantic-completion-displayor-format-tag-function | 1371 | (defcustom semantic-completion-displayor-format-tag-function |
| 1372 | #'semantic-format-tag-name | 1372 | #'semantic-format-tag-name |
| 1373 | "*A Tag format function to use when showing completions." | 1373 | "A Tag format function to use when showing completions." |
| 1374 | :group 'semantic | 1374 | :group 'semantic |
| 1375 | :type semantic-format-tag-custom-list) | 1375 | :type semantic-format-tag-custom-list) |
| 1376 | 1376 | ||
| @@ -1871,7 +1871,7 @@ Use this to enable custom editing.") | |||
| 1871 | 1871 | ||
| 1872 | (defcustom semantic-complete-inline-analyzer-displayor-class | 1872 | (defcustom semantic-complete-inline-analyzer-displayor-class |
| 1873 | 'semantic-displayor-traditional | 1873 | 'semantic-displayor-traditional |
| 1874 | "*Class for displayor to use with inline completion." | 1874 | "Class for displayor to use with inline completion." |
| 1875 | :group 'semantic | 1875 | :group 'semantic |
| 1876 | :type semantic-complete-inline-custom-type | 1876 | :type semantic-complete-inline-custom-type |
| 1877 | ) | 1877 | ) |
| @@ -2075,7 +2075,7 @@ completion works." | |||
| 2075 | 2075 | ||
| 2076 | (defcustom semantic-complete-inline-analyzer-idle-displayor-class | 2076 | (defcustom semantic-complete-inline-analyzer-idle-displayor-class |
| 2077 | 'semantic-displayor-ghost | 2077 | 'semantic-displayor-ghost |
| 2078 | "*Class for displayor to use with inline completion at idle time." | 2078 | "Class for displayor to use with inline completion at idle time." |
| 2079 | :group 'semantic | 2079 | :group 'semantic |
| 2080 | :type semantic-complete-inline-custom-type | 2080 | :type semantic-complete-inline-custom-type |
| 2081 | ) | 2081 | ) |
diff --git a/lisp/cedet/semantic/db.el b/lisp/cedet/semantic/db.el index a72e78402ea..1b3f07aa0f6 100644 --- a/lisp/cedet/semantic/db.el +++ b/lisp/cedet/semantic/db.el | |||
| @@ -814,7 +814,7 @@ local variable." | |||
| 814 | ;; associated databases. | 814 | ;; associated databases. |
| 815 | 815 | ||
| 816 | (defcustom semanticdb-project-roots nil | 816 | (defcustom semanticdb-project-roots nil |
| 817 | "*List of directories, where each directory is the root of some project. | 817 | "List of directories, where each directory is the root of some project. |
| 818 | All subdirectories of a root project are considered a part of one project. | 818 | All subdirectories of a root project are considered a part of one project. |
| 819 | Values in this string can be overridden by project management programs | 819 | Values in this string can be overridden by project management programs |
| 820 | via the `semanticdb-project-root-functions' variable." | 820 | via the `semanticdb-project-root-functions' variable." |
diff --git a/lisp/cedet/semantic/decorate/include.el b/lisp/cedet/semantic/decorate/include.el index e12fff1a2a8..3ea2a48a9fa 100644 --- a/lisp/cedet/semantic/decorate/include.el +++ b/lisp/cedet/semantic/decorate/include.el | |||
| @@ -49,7 +49,7 @@ | |||
| 49 | ;; | 49 | ;; |
| 50 | (defface semantic-decoration-on-includes | 50 | (defface semantic-decoration-on-includes |
| 51 | nil | 51 | nil |
| 52 | "*Overlay Face used on includes that are not in some other state. | 52 | "Overlay Face used on includes that are not in some other state. |
| 53 | Used by the decoration style: `semantic-decoration-on-includes'." | 53 | Used by the decoration style: `semantic-decoration-on-includes'." |
| 54 | :group 'semantic-faces) | 54 | :group 'semantic-faces) |
| 55 | 55 | ||
| @@ -119,7 +119,7 @@ Used by the decoration style: `semantic-decoration-on-includes'." | |||
| 119 | (:background "#900000")) | 119 | (:background "#900000")) |
| 120 | (((class color) (background light)) | 120 | (((class color) (background light)) |
| 121 | (:background "#fff0f0"))) | 121 | (:background "#fff0f0"))) |
| 122 | "*Face used to show includes that cannot be found. | 122 | "Face used to show includes that cannot be found. |
| 123 | Used by the decoration style: `semantic-decoration-on-unknown-includes'." | 123 | Used by the decoration style: `semantic-decoration-on-unknown-includes'." |
| 124 | :group 'semantic-faces) | 124 | :group 'semantic-faces) |
| 125 | 125 | ||
| @@ -182,7 +182,7 @@ Used by the decoration style: `semantic-decoration-on-unknown-includes'." | |||
| 182 | (:background "#009000")) | 182 | (:background "#009000")) |
| 183 | (((class color) (background light)) | 183 | (((class color) (background light)) |
| 184 | (:background "#f0fdf0"))) | 184 | (:background "#f0fdf0"))) |
| 185 | "*Face used to show includes that have no file, but do have a DB table. | 185 | "Face used to show includes that have no file, but do have a DB table. |
| 186 | Used by the decoration style: `semantic-decoration-on-fileless-includes'." | 186 | Used by the decoration style: `semantic-decoration-on-fileless-includes'." |
| 187 | :group 'semantic-faces) | 187 | :group 'semantic-faces) |
| 188 | 188 | ||
| @@ -245,7 +245,7 @@ Used by the decoration style: `semantic-decoration-on-fileless-includes'." | |||
| 245 | (:background "#555500")) | 245 | (:background "#555500")) |
| 246 | (((class color) (background light)) | 246 | (((class color) (background light)) |
| 247 | (:background "#ffff55"))) | 247 | (:background "#ffff55"))) |
| 248 | "*Face used to show includes that have not yet been parsed. | 248 | "Face used to show includes that have not yet been parsed. |
| 249 | Used by the decoration style: `semantic-decoration-on-unparsed-includes'." | 249 | Used by the decoration style: `semantic-decoration-on-unparsed-includes'." |
| 250 | :group 'semantic-faces) | 250 | :group 'semantic-faces) |
| 251 | 251 | ||
diff --git a/lisp/cedet/semantic/decorate/mode.el b/lisp/cedet/semantic/decorate/mode.el index fca9c3c4650..d4385e165c8 100644 --- a/lisp/cedet/semantic/decorate/mode.el +++ b/lisp/cedet/semantic/decorate/mode.el | |||
| @@ -455,7 +455,7 @@ Does not provide overlines for prototypes.") | |||
| 455 | (:overline "cyan")) | 455 | (:overline "cyan")) |
| 456 | (((class color) (background light)) | 456 | (((class color) (background light)) |
| 457 | (:overline "blue"))) | 457 | (:overline "blue"))) |
| 458 | "*Face used to show long tags in. | 458 | "Face used to show long tags in. |
| 459 | Used by decoration style: `semantic-tag-boundary'." | 459 | Used by decoration style: `semantic-tag-boundary'." |
| 460 | :group 'semantic-faces) | 460 | :group 'semantic-faces) |
| 461 | 461 | ||
| @@ -504,7 +504,7 @@ Used by decoration style: `semantic-tag-boundary'." | |||
| 504 | (:background "#200000")) | 504 | (:background "#200000")) |
| 505 | (((class color) (background light)) | 505 | (((class color) (background light)) |
| 506 | (:background "#8fffff"))) | 506 | (:background "#8fffff"))) |
| 507 | "*Face used to show privately scoped tags in. | 507 | "Face used to show privately scoped tags in. |
| 508 | Used by the decoration style: `semantic-decoration-on-private-members'." | 508 | Used by the decoration style: `semantic-decoration-on-private-members'." |
| 509 | :group 'semantic-faces) | 509 | :group 'semantic-faces) |
| 510 | 510 | ||
| @@ -526,7 +526,7 @@ Use a primary decoration." | |||
| 526 | (:background "#000020")) | 526 | (:background "#000020")) |
| 527 | (((class color) (background light)) | 527 | (((class color) (background light)) |
| 528 | (:background "#fffff8"))) | 528 | (:background "#fffff8"))) |
| 529 | "*Face used to show protected scoped tags in. | 529 | "Face used to show protected scoped tags in. |
| 530 | Used by the decoration style: `semantic-decoration-on-protected-members'." | 530 | Used by the decoration style: `semantic-decoration-on-protected-members'." |
| 531 | :group 'semantic-faces) | 531 | :group 'semantic-faces) |
| 532 | 532 | ||
diff --git a/lisp/cedet/semantic/format.el b/lisp/cedet/semantic/format.el index 1fe703fd09a..0a984ebb32d 100644 --- a/lisp/cedet/semantic/format.el +++ b/lisp/cedet/semantic/format.el | |||
| @@ -559,14 +559,14 @@ Optional argument COLOR means highlight the prototype with font-lock colors." | |||
| 559 | ;;; UML display styles | 559 | ;;; UML display styles |
| 560 | ;; | 560 | ;; |
| 561 | (defcustom semantic-uml-colon-string " : " | 561 | (defcustom semantic-uml-colon-string " : " |
| 562 | "*String used as a color separator between parts of a UML string. | 562 | "String used as a color separator between parts of a UML string. |
| 563 | In UML, a variable may appear as `varname : type'. | 563 | In UML, a variable may appear as `varname : type'. |
| 564 | Change this variable to change the output separator." | 564 | Change this variable to change the output separator." |
| 565 | :group 'semantic | 565 | :group 'semantic |
| 566 | :type 'string) | 566 | :type 'string) |
| 567 | 567 | ||
| 568 | (defcustom semantic-uml-no-protection-string "" | 568 | (defcustom semantic-uml-no-protection-string "" |
| 569 | "*String used to describe when no protection is specified. | 569 | "String used to describe when no protection is specified. |
| 570 | Used by `semantic-format-tag-uml-protection-to-string'." | 570 | Used by `semantic-format-tag-uml-protection-to-string'." |
| 571 | :group 'semantic | 571 | :group 'semantic |
| 572 | :type 'string) | 572 | :type 'string) |
diff --git a/lisp/cedet/semantic/ia.el b/lisp/cedet/semantic/ia.el index 214fbb50f98..a4dabe66083 100644 --- a/lisp/cedet/semantic/ia.el +++ b/lisp/cedet/semantic/ia.el | |||
| @@ -146,7 +146,7 @@ Completion options are calculated with `semantic-analyze-possible-completions'." | |||
| 146 | 146 | ||
| 147 | (defcustom semantic-ia-completion-menu-format-tag-function | 147 | (defcustom semantic-ia-completion-menu-format-tag-function |
| 148 | 'semantic-format-tag-uml-concise-prototype | 148 | 'semantic-format-tag-uml-concise-prototype |
| 149 | "*Function used to convert a tag to a string during completion." | 149 | "Function used to convert a tag to a string during completion." |
| 150 | :group 'semantic | 150 | :group 'semantic |
| 151 | :type semantic-format-tag-custom-list) | 151 | :type semantic-format-tag-custom-list) |
| 152 | 152 | ||
diff --git a/lisp/cedet/semantic/idle.el b/lisp/cedet/semantic/idle.el index 549a30ac0bc..5f902622ac6 100644 --- a/lisp/cedet/semantic/idle.el +++ b/lisp/cedet/semantic/idle.el | |||
| @@ -141,7 +141,7 @@ Use the command `semantic-idle-scheduler-mode' to change this variable.") | |||
| 141 | (make-variable-buffer-local 'semantic-idle-scheduler-mode) | 141 | (make-variable-buffer-local 'semantic-idle-scheduler-mode) |
| 142 | 142 | ||
| 143 | (defcustom semantic-idle-scheduler-max-buffer-size 0 | 143 | (defcustom semantic-idle-scheduler-max-buffer-size 0 |
| 144 | "*Maximum size in bytes of buffers where idle-scheduler is enabled. | 144 | "Maximum size in bytes of buffers where idle-scheduler is enabled. |
| 145 | If this value is less than or equal to 0, idle-scheduler is enabled in | 145 | If this value is less than or equal to 0, idle-scheduler is enabled in |
| 146 | all buffers regardless of their size." | 146 | all buffers regardless of their size." |
| 147 | :group 'semantic | 147 | :group 'semantic |
| @@ -303,13 +303,13 @@ call additional functions registered with the timer calls." | |||
| 303 | ;; Unlike the shorter timer, the WORK timer will kick of tasks that | 303 | ;; Unlike the shorter timer, the WORK timer will kick of tasks that |
| 304 | ;; may take a long time to complete. | 304 | ;; may take a long time to complete. |
| 305 | (defcustom semantic-idle-work-parse-neighboring-files-flag nil | 305 | (defcustom semantic-idle-work-parse-neighboring-files-flag nil |
| 306 | "*Non-nil means to parse files in the same dir as the current buffer. | 306 | "Non-nil means to parse files in the same dir as the current buffer. |
| 307 | Disable to prevent lots of excessive parsing in idle time." | 307 | Disable to prevent lots of excessive parsing in idle time." |
| 308 | :group 'semantic | 308 | :group 'semantic |
| 309 | :type 'boolean) | 309 | :type 'boolean) |
| 310 | 310 | ||
| 311 | (defcustom semantic-idle-work-update-headers-flag nil | 311 | (defcustom semantic-idle-work-update-headers-flag nil |
| 312 | "*Non-nil means to parse through header files in idle time. | 312 | "Non-nil means to parse through header files in idle time. |
| 313 | Disable to prevent idle time parsing of many files. If completion | 313 | Disable to prevent idle time parsing of many files. If completion |
| 314 | is called that work will be done then instead." | 314 | is called that work will be done then instead." |
| 315 | :group 'semantic | 315 | :group 'semantic |
diff --git a/lisp/cedet/semantic/imenu.el b/lisp/cedet/semantic/imenu.el index 4983d6c9f44..cfff253a793 100644 --- a/lisp/cedet/semantic/imenu.el +++ b/lisp/cedet/semantic/imenu.el | |||
| @@ -57,7 +57,7 @@ | |||
| 57 | 57 | ||
| 58 | ;;;###autoload | 58 | ;;;###autoload |
| 59 | (defcustom semantic-imenu-summary-function 'semantic-format-tag-abbreviate | 59 | (defcustom semantic-imenu-summary-function 'semantic-format-tag-abbreviate |
| 60 | "*Function to use when creating items in Imenu. | 60 | "Function to use when creating items in Imenu. |
| 61 | Some useful functions are found in `semantic-format-tag-functions'." | 61 | Some useful functions are found in `semantic-format-tag-functions'." |
| 62 | :group 'semantic-imenu | 62 | :group 'semantic-imenu |
| 63 | :type semantic-format-tag-custom-list) | 63 | :type semantic-format-tag-custom-list) |
| @@ -65,20 +65,20 @@ Some useful functions are found in `semantic-format-tag-functions'." | |||
| 65 | 65 | ||
| 66 | ;;;###autoload | 66 | ;;;###autoload |
| 67 | (defcustom semantic-imenu-bucketize-file t | 67 | (defcustom semantic-imenu-bucketize-file t |
| 68 | "*Non-nil if tags in a file are to be grouped into buckets." | 68 | "Non-nil if tags in a file are to be grouped into buckets." |
| 69 | :group 'semantic-imenu | 69 | :group 'semantic-imenu |
| 70 | :type 'boolean) | 70 | :type 'boolean) |
| 71 | (make-variable-buffer-local 'semantic-imenu-bucketize-file) | 71 | (make-variable-buffer-local 'semantic-imenu-bucketize-file) |
| 72 | 72 | ||
| 73 | (defcustom semantic-imenu-adopt-external-members t | 73 | (defcustom semantic-imenu-adopt-external-members t |
| 74 | "*Non-nil if types in a file should adopt externally defined members. | 74 | "Non-nil if types in a file should adopt externally defined members. |
| 75 | C++ and CLOS can define methods that are not in the body of a class | 75 | C++ and CLOS can define methods that are not in the body of a class |
| 76 | definition." | 76 | definition." |
| 77 | :group 'semantic-imenu | 77 | :group 'semantic-imenu |
| 78 | :type 'boolean) | 78 | :type 'boolean) |
| 79 | 79 | ||
| 80 | (defcustom semantic-imenu-buckets-to-submenu t | 80 | (defcustom semantic-imenu-buckets-to-submenu t |
| 81 | "*Non-nil if buckets of tags are to be turned into submenus. | 81 | "Non-nil if buckets of tags are to be turned into submenus. |
| 82 | This option is ignored if `semantic-imenu-bucketize-file' is nil." | 82 | This option is ignored if `semantic-imenu-bucketize-file' is nil." |
| 83 | :group 'semantic-imenu | 83 | :group 'semantic-imenu |
| 84 | :type 'boolean) | 84 | :type 'boolean) |
| @@ -86,7 +86,7 @@ This option is ignored if `semantic-imenu-bucketize-file' is nil." | |||
| 86 | 86 | ||
| 87 | ;;;###autoload | 87 | ;;;###autoload |
| 88 | (defcustom semantic-imenu-expand-type-members t | 88 | (defcustom semantic-imenu-expand-type-members t |
| 89 | "*Non-nil if types should have submenus with members in them." | 89 | "Non-nil if types should have submenus with members in them." |
| 90 | :group 'semantic-imenu | 90 | :group 'semantic-imenu |
| 91 | :type 'boolean) | 91 | :type 'boolean) |
| 92 | (make-variable-buffer-local 'semantic-imenu-expand-type-members) | 92 | (make-variable-buffer-local 'semantic-imenu-expand-type-members) |
| @@ -94,7 +94,7 @@ This option is ignored if `semantic-imenu-bucketize-file' is nil." | |||
| 94 | 'semantic-imenu-expand-type-members "23.2") | 94 | 'semantic-imenu-expand-type-members "23.2") |
| 95 | 95 | ||
| 96 | (defcustom semantic-imenu-bucketize-type-members t | 96 | (defcustom semantic-imenu-bucketize-type-members t |
| 97 | "*Non-nil if members of a type should be grouped into buckets. | 97 | "Non-nil if members of a type should be grouped into buckets. |
| 98 | A nil value means to keep them in the same order. | 98 | A nil value means to keep them in the same order. |
| 99 | Overridden to nil if `semantic-imenu-bucketize-file' is nil." | 99 | Overridden to nil if `semantic-imenu-bucketize-file' is nil." |
| 100 | :group 'semantic-imenu | 100 | :group 'semantic-imenu |
| @@ -104,7 +104,7 @@ Overridden to nil if `semantic-imenu-bucketize-file' is nil." | |||
| 104 | 'semantic-imenu-bucketize-type-members "23.2") | 104 | 'semantic-imenu-bucketize-type-members "23.2") |
| 105 | 105 | ||
| 106 | (defcustom semantic-imenu-sort-bucket-function nil | 106 | (defcustom semantic-imenu-sort-bucket-function nil |
| 107 | "*Function to use when sorting tags in the buckets of functions. | 107 | "Function to use when sorting tags in the buckets of functions. |
| 108 | See `semantic-bucketize' and the FILTER argument for more details on this function." | 108 | See `semantic-bucketize' and the FILTER argument for more details on this function." |
| 109 | :group 'semantic-imenu | 109 | :group 'semantic-imenu |
| 110 | :type '(radio (const :tag "No Sorting" nil) | 110 | :type '(radio (const :tag "No Sorting" nil) |
| @@ -120,7 +120,7 @@ See `semantic-bucketize' and the FILTER argument for more details on this functi | |||
| 120 | (make-variable-buffer-local 'semantic-imenu-sort-bucket-function) | 120 | (make-variable-buffer-local 'semantic-imenu-sort-bucket-function) |
| 121 | 121 | ||
| 122 | (defcustom semantic-imenu-index-directory nil | 122 | (defcustom semantic-imenu-index-directory nil |
| 123 | "*Non nil to index the entire directory for tags. | 123 | "Non nil to index the entire directory for tags. |
| 124 | Doesn't actually parse the entire directory, but displays tags for all files | 124 | Doesn't actually parse the entire directory, but displays tags for all files |
| 125 | currently listed in the current Semantic database. | 125 | currently listed in the current Semantic database. |
| 126 | This variable has no meaning if semanticdb is not active." | 126 | This variable has no meaning if semanticdb is not active." |
| @@ -128,7 +128,7 @@ This variable has no meaning if semanticdb is not active." | |||
| 128 | :type 'boolean) | 128 | :type 'boolean) |
| 129 | 129 | ||
| 130 | (defcustom semantic-imenu-auto-rebuild-directory-indexes nil | 130 | (defcustom semantic-imenu-auto-rebuild-directory-indexes nil |
| 131 | "*If non-nil automatically rebuild directory index imenus. | 131 | "If non-nil automatically rebuild directory index imenus. |
| 132 | That is when a directory index imenu is updated, automatically rebuild | 132 | That is when a directory index imenu is updated, automatically rebuild |
| 133 | other buffer local ones based on the same semanticdb." | 133 | other buffer local ones based on the same semanticdb." |
| 134 | :group 'semantic-imenu | 134 | :group 'semantic-imenu |
| @@ -498,7 +498,7 @@ Clears all imenu menus that may be depending on the database." | |||
| 498 | "Function to convert semantic tags into `which-function' text.") | 498 | "Function to convert semantic tags into `which-function' text.") |
| 499 | 499 | ||
| 500 | (defcustom semantic-which-function-use-color nil | 500 | (defcustom semantic-which-function-use-color nil |
| 501 | "*Use color when displaying the current function with `which-function'." | 501 | "Use color when displaying the current function with `which-function'." |
| 502 | :group 'semantic-imenu | 502 | :group 'semantic-imenu |
| 503 | :type 'boolean) | 503 | :type 'boolean) |
| 504 | 504 | ||
diff --git a/lisp/cedet/semantic/lex-spp.el b/lisp/cedet/semantic/lex-spp.el index b48f5aedd68..fe90a047f86 100644 --- a/lisp/cedet/semantic/lex-spp.el +++ b/lisp/cedet/semantic/lex-spp.el | |||
| @@ -1239,7 +1239,7 @@ of type `spp-macro-undef' is to be created." | |||
| 1239 | ;; written yet. | 1239 | ;; written yet. |
| 1240 | ;; | 1240 | ;; |
| 1241 | (defcustom semantic-lex-spp-use-headers-flag nil | 1241 | (defcustom semantic-lex-spp-use-headers-flag nil |
| 1242 | "*Non-nil means to pre-parse headers as we go. | 1242 | "Non-nil means to pre-parse headers as we go. |
| 1243 | For languages that use the Semantic pre-processor, this can | 1243 | For languages that use the Semantic pre-processor, this can |
| 1244 | improve the accuracy of parsed files where include files | 1244 | improve the accuracy of parsed files where include files |
| 1245 | can change the state of what's parsed in the current file. | 1245 | can change the state of what's parsed in the current file. |
diff --git a/lisp/cedet/semantic/mru-bookmark.el b/lisp/cedet/semantic/mru-bookmark.el index 4146b4e5b2c..1e15773952d 100644 --- a/lisp/cedet/semantic/mru-bookmark.el +++ b/lisp/cedet/semantic/mru-bookmark.el | |||
| @@ -263,7 +263,7 @@ If ARG is positive or nil, enable, if it is negative, disable." | |||
| 263 | 'semantic-mru-bookmark-mode (if global-semantic-mru-bookmark-mode 1 -1))) | 263 | 'semantic-mru-bookmark-mode (if global-semantic-mru-bookmark-mode 1 -1))) |
| 264 | 264 | ||
| 265 | (defcustom semantic-mru-bookmark-mode-hook nil | 265 | (defcustom semantic-mru-bookmark-mode-hook nil |
| 266 | "*Hook run at the end of function `semantic-mru-bookmark-mode'." | 266 | "Hook run at the end of function `semantic-mru-bookmark-mode'." |
| 267 | :group 'semantic | 267 | :group 'semantic |
| 268 | :type 'hook) | 268 | :type 'hook) |
| 269 | 269 | ||
diff --git a/lisp/cedet/semantic/sb.el b/lisp/cedet/semantic/sb.el index 7eac255fe37..a06955067d9 100644 --- a/lisp/cedet/semantic/sb.el +++ b/lisp/cedet/semantic/sb.el | |||
| @@ -38,7 +38,7 @@ | |||
| 38 | (declare-function semanticdb-file-stream "semantic/db") | 38 | (declare-function semanticdb-file-stream "semantic/db") |
| 39 | 39 | ||
| 40 | (defcustom semantic-sb-autoexpand-length 1 | 40 | (defcustom semantic-sb-autoexpand-length 1 |
| 41 | "*Length of a semantic bucket to autoexpand in place. | 41 | "Length of a semantic bucket to autoexpand in place. |
| 42 | This will replace the named bucket that would have usually occurred here." | 42 | This will replace the named bucket that would have usually occurred here." |
| 43 | :group 'speedbar | 43 | :group 'speedbar |
| 44 | :type 'integer) | 44 | :type 'integer) |
| @@ -49,12 +49,12 @@ Make this buffer local for modes that have different types of tags | |||
| 49 | that should be ignored.") | 49 | that should be ignored.") |
| 50 | 50 | ||
| 51 | (defcustom semantic-sb-button-format-tag-function 'semantic-format-tag-abbreviate | 51 | (defcustom semantic-sb-button-format-tag-function 'semantic-format-tag-abbreviate |
| 52 | "*Function called to create the text for a but from a token." | 52 | "Function called to create the text for a but from a token." |
| 53 | :group 'speedbar | 53 | :group 'speedbar |
| 54 | :type semantic-format-tag-custom-list) | 54 | :type semantic-format-tag-custom-list) |
| 55 | 55 | ||
| 56 | (defcustom semantic-sb-info-format-tag-function 'semantic-format-tag-summarize | 56 | (defcustom semantic-sb-info-format-tag-function 'semantic-format-tag-summarize |
| 57 | "*Function called to create the text for info display from a token." | 57 | "Function called to create the text for info display from a token." |
| 58 | :group 'speedbar | 58 | :group 'speedbar |
| 59 | :type semantic-format-tag-custom-list) | 59 | :type semantic-format-tag-custom-list) |
| 60 | 60 | ||
diff --git a/lisp/cedet/srecode/fields.el b/lisp/cedet/srecode/fields.el index 1b7715c39d3..e4b54b83645 100644 --- a/lisp/cedet/srecode/fields.el +++ b/lisp/cedet/srecode/fields.el | |||
| @@ -55,7 +55,7 @@ Once an insertion set is done, these fields will be activated.") | |||
| 55 | (:underline "green")) | 55 | (:underline "green")) |
| 56 | (((class color) (background light)) | 56 | (((class color) (background light)) |
| 57 | (:underline "green4"))) | 57 | (:underline "green4"))) |
| 58 | "*Face used to specify editable fields from a template." | 58 | "Face used to specify editable fields from a template." |
| 59 | :group 'semantic-faces) | 59 | :group 'semantic-faces) |
| 60 | 60 | ||
| 61 | (defcustom srecode-fields-exit-confirmation nil | 61 | (defcustom srecode-fields-exit-confirmation nil |