summaryrefslogtreecommitdiff
path: root/lisp/cedet/semantic/decorate/mode.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2013-06-10 16:02:33 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2013-06-10 16:02:33 -0700
commitc6bc7508a99546eac0ad2f926eaece09b2086d16 (patch)
tree0350878e2582c0cc258f7e412dbbf10eb9f93858 /lisp/cedet/semantic/decorate/mode.el
parent001b9fbe7c415ef77f4e2b8a6c448989c379ae94 (diff)
downloademacs-c6bc7508a99546eac0ad2f926eaece09b2086d16.tar.gz
Spelling fixes.
Diffstat (limited to 'lisp/cedet/semantic/decorate/mode.el')
-rw-r--r--lisp/cedet/semantic/decorate/mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/cedet/semantic/decorate/mode.el b/lisp/cedet/semantic/decorate/mode.el
index 3487e615168..a4aa535eb1a 100644
--- a/lisp/cedet/semantic/decorate/mode.el
+++ b/lisp/cedet/semantic/decorate/mode.el
@@ -396,7 +396,7 @@ decoration API found in this library."
(let ((predicate (semantic-decorate-style-predicate name))
(highlighter (semantic-decorate-style-highlighter name))
(predicatedef (semantic-decorate-style-predicate-default name))
- (highlighterdef (semantic-decorate-style-highlighter-default name))
+ (highlighterdef (semantic-decorate-style-highlighter-default name))
(defaultenable (if (plist-member flags :enabled)
(plist-get flags :enabled)
t))
@@ -422,14 +422,14 @@ decoration API found in this library."
(add-to-list 'semantic-decoration-styles
(cons ',(symbol-name name)
,defaultenable))
- ;; If there is a load file, then create the autload tokens for
+ ;; If there is a load file, then create the autoload tokens for
;; those functions to load the token, but only if the fsym
;; doesn't exist yet.
(when (stringp ,loadfile)
(unless (fboundp ',predicatedef)
(autoload ',predicatedef ',loadfile "Return non-nil to decorate TAG."
nil 'function))
-
+
(unless (fboundp ',highlighterdef)
(autoload ',highlighterdef ',loadfile "Decorate TAG."
nil 'function))