[vala-extra-vapis] Update InitFlags



commit 33327e571adc07e2c957864871b227c1ed812a02
Author: Alistair Thomas <astavale yahoo co uk>
Date:   Wed Aug 10 18:22:01 2016 +0100

    Update InitFlags

 augeas.vapi |   43 ++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 42 insertions(+), 1 deletions(-)
---
diff --git a/augeas.vapi b/augeas.vapi
index 7762bce..618bcbe 100644
--- a/augeas.vapi
+++ b/augeas.vapi
@@ -22,17 +22,58 @@
 
 [CCode (cheader_filename = "augeas.h")]
 namespace Augeas {
+  /**
+   * Flags to influence the behaviour of Augeas
+   */
   [Flags]
   [CCode (cprefix = "AUG_")]
   public enum InitFlags {
     NONE,
+    /**
+    * Preserve originals of modified files with extension '.augsave'
+    */
     SAVE_BACKUP,
+    /**
+    * Save changes into a new file with extension '.augnew'
+    *
+    * Does not overwrite the original file
+    * and takes precedence over SAVE_BACKUP
+    */
     SAVE_NEWFILE,
+    /**
+    * Type check lenses
+    *
+    * Since it can be an expensive operation this is not done by default
+    */
     TYPE_CHECK,
+    /**
+    * Do not search the built in default directories for lenses
+    */
     NO_STDINC,
+    /**
+    * Make save a no-op process, just show what would have changed
+    */
     SAVE_NOOP,
+    /**
+    * Do not automatically load files associated with lenses on start up
+    */
     NO_LOAD,
-    NO_MODL_AUTOLOAD
+    /**
+    * Do not automatically load all lenses found in the search paths on start up
+    */
+    NO_MODL_AUTOLOAD,
+    /**
+    * Load span positions for nodes related to a file
+    */
+    ENABLE_SPAN,
+    /**
+    * Do not automatically close when encountering an error during start up
+    */
+    NO_ERR_CLOSE,
+    /**
+    * Output a message when a lens is loaded, used by 'augparse --trace'
+    */
+    TRACE_MODULE_LOADING
   }
 
   [CCode (cprefix= "AUG_")]


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