emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r113075: cedet/semantic/decorate/mode.el autoload tw


From: Glenn Morris
Subject: [Emacs-diffs] trunk r113075: cedet/semantic/decorate/mode.el autoload tweak
Date: Wed, 19 Jun 2013 07:29:45 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113075
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2013-06-19 00:28:47 -0700
message:
  cedet/semantic/decorate/mode.el autoload tweak
  
  * 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.
modified:
  lisp/cedet/ChangeLog           changelog-20100919015713-3rbr456yray5m84f-1
  lisp/cedet/semantic/decorate/mode.el 
mode.el-20091113204419-o5vbwnq5f7feedwu-11272
=== modified file 'lisp/cedet/ChangeLog'
--- a/lisp/cedet/ChangeLog      2013-06-18 02:06:33 +0000
+++ b/lisp/cedet/ChangeLog      2013-06-19 07:28:47 +0000
@@ -1,3 +1,10 @@
+2013-06-19  Glenn Morris  <address@hidden>
+
+       * 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  <address@hidden>
 
        * semantic/ctxt.el (semantic-ctxt-end-of-symbol-default):

=== modified file 'lisp/cedet/semantic/decorate/mode.el'
--- a/lisp/cedet/semantic/decorate/mode.el      2013-06-10 23:02:33 +0000
+++ b/lisp/cedet/semantic/decorate/mode.el      2013-06-19 07:28:47 +0000
@@ -374,7 +374,7 @@
   "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 @@
        (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."))
         ))
     ))
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]