]> git.eshelyaron.com Git - emacs.git/commitdiff
cedet/semantic/decorate/mode.el autoload tweak
authorGlenn Morris <rgm@gnu.org>
Wed, 19 Jun 2013 07:28:47 +0000 (00:28 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 19 Jun 2013 07:28:47 +0000 (00:28 -0700)
* cedet/semantic/decorate/mode.el (define-semantic-decoration-style): Doc fix.
(define-semantic-decoration-style): 'function is not an accepted
value for autoload's "type" argument.  Might as well use the default.

lisp/cedet/ChangeLog
lisp/cedet/semantic/decorate/mode.el

index 1884df83a4add42bde303fc797937ffc4b93e66a..ec5c5840aba235a95058eba095416bc580090852 100644 (file)
@@ -1,3 +1,10 @@
+2013-06-19  Glenn Morris  <rgm@gnu.org>
+
+       * semantic/decorate/mode.el (define-semantic-decoration-style):
+       Doc fix.
+       (define-semantic-decoration-style): 'function is not an accepted
+       value for autoload's "type" argument.  Might as well use the default.
+
 2013-06-18  Glenn Morris  <rgm@gnu.org>
 
        * semantic/ctxt.el (semantic-ctxt-end-of-symbol-default):
index a4aa535eb1ab48f181035f63c0934fa19879c376..ba06c73936bfcb4c4d69b1f2c26037b43af05bb3 100644 (file)
@@ -374,7 +374,7 @@ IGNORE any input arguments."
   "Define a new decoration style with NAME.
 DOC is a documentation string describing the decoration style NAME.
 It is appended to auto-generated doc strings.
-An Optional list of FLAGS can also be specified.  Flags are:
+An optional list of FLAGS can also be specified.  Flags are:
   :enabled <value>  - specify the default enabled value for NAME.
   :load <value>     - specify a feature (as a string) with the rest of
                       the definition for decoration mode NAME.
@@ -428,11 +428,10 @@ decoration API found in this library."
        (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))
+          (autoload ',highlighterdef ',loadfile "Decorate TAG."))
         ))
     ))
 \f