aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cedet
diff options
context:
space:
mode:
authorChong Yidong2012-04-09 21:05:48 +0800
committerChong Yidong2012-04-09 21:05:48 +0800
commitfb7ada5f94a71d73bf6cfad5cc87fe7fb26125a5 (patch)
treeeba43d1fa2427a77f1f6b1468838426b33ea5973 /lisp/cedet
parenta18ecafa99e7e7c3caa35ed68dd8a7b9b5d2b8e3 (diff)
downloademacs-fb7ada5f94a71d73bf6cfad5cc87fe7fb26125a5.tar.gz
emacs-fb7ada5f94a71d73bf6cfad5cc87fe7fb26125a5.zip
Remove * characters from the front of variable docstrings.
Diffstat (limited to 'lisp/cedet')
-rw-r--r--lisp/cedet/data-debug.el2
-rw-r--r--lisp/cedet/pulse.el4
-rw-r--r--lisp/cedet/semantic.el4
3 files changed, 5 insertions, 5 deletions
diff --git a/lisp/cedet/data-debug.el b/lisp/cedet/data-debug.el
index d930a20fba5..03dca6ceccc 100644
--- a/lisp/cedet/data-debug.el
+++ b/lisp/cedet/data-debug.el
@@ -872,7 +872,7 @@ If PARENT is non-nil, it is somehow related as a parent to thing."
872 "Keymap used in data-debug.") 872 "Keymap used in data-debug.")
873 873
874(defcustom data-debug-mode-hook nil 874(defcustom data-debug-mode-hook nil
875 "*Hook run when data-debug starts." 875 "Hook run when data-debug starts."
876 :group 'data-debug 876 :group 'data-debug
877 :type 'hook) 877 :type 'hook)
878 878
diff --git a/lisp/cedet/pulse.el b/lisp/cedet/pulse.el
index 746ee0b89af..8f367d918dc 100644
--- a/lisp/cedet/pulse.el
+++ b/lisp/cedet/pulse.el
@@ -77,7 +77,7 @@ this flag is ignored."
77 (:background "#AAAA33")) 77 (:background "#AAAA33"))
78 (((class color) (background light)) 78 (((class color) (background light))
79 (:background "#FFFFAA"))) 79 (:background "#FFFFAA")))
80 "*Face used at beginning of a highlight." 80 "Face used at beginning of a highlight."
81 :group 'pulse) 81 :group 'pulse)
82 82
83(defface pulse-highlight-face 83(defface pulse-highlight-face
@@ -85,7 +85,7 @@ this flag is ignored."
85 (:background "#AAAA33")) 85 (:background "#AAAA33"))
86 (((class color) (background light)) 86 (((class color) (background light))
87 (:background "#FFFFAA"))) 87 (:background "#FFFFAA")))
88 "*Face used during a pulse for display. *DO NOT CUSTOMIZE* 88 "Face used during a pulse for display. *DO NOT CUSTOMIZE*
89Face used for temporary highlighting of tags for effect." 89Face used for temporary highlighting of tags for effect."
90 :group 'pulse) 90 :group 'pulse)
91 91
diff --git a/lisp/cedet/semantic.el b/lisp/cedet/semantic.el
index 0ed031019be..aeb5241b2d0 100644
--- a/lisp/cedet/semantic.el
+++ b/lisp/cedet/semantic.el
@@ -550,14 +550,14 @@ is requested."
550 ) 550 )
551 551
552(defvar semantic-working-type 'percent 552(defvar semantic-working-type 'percent
553 "*The type of working message to use when parsing. 553 "The type of working message to use when parsing.
554'percent means we are doing a linear parse through the buffer. 554'percent means we are doing a linear parse through the buffer.
555'dynamic means we are reparsing specific tags.") 555'dynamic means we are reparsing specific tags.")
556(semantic-varalias-obsolete 'semantic-bovination-working-type 556(semantic-varalias-obsolete 'semantic-bovination-working-type
557 'semantic-working-type "23.2") 557 'semantic-working-type "23.2")
558 558
559(defvar semantic-minimum-working-buffer-size (* 1024 5) 559(defvar semantic-minimum-working-buffer-size (* 1024 5)
560 "*The minimum size of a buffer before working messages are displayed. 560 "The minimum size of a buffer before working messages are displayed.
561Buffers smaller than this will parse silently. 561Buffers smaller than this will parse silently.
562Buffers larger than this will display the working progress bar.") 562Buffers larger than this will display the working progress bar.")
563 563