]> git.lyx.org Git - lyx.git/blobdiff - src/latexrunparams.h
ws changes only
[lyx.git] / src / latexrunparams.h
index 39c46ace1d36255f2cbf716e5b565f885da17214..a1c1296217d7461405ed94f2c712fe052413a0b0 100644 (file)
@@ -6,7 +6,7 @@
  *
  *  \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef LatexRunParams_H
@@ -19,7 +19,7 @@ struct LatexRunParams {
         };
 
         LatexRunParams() : flavor(LATEX), nice(false),
-                          fragile(false), free_spacing(false),
+                          moving_arg(false), free_spacing(false),
                           use_babel(false) {}
 
        /** The latex that we export depends occasionally on what is to
@@ -34,16 +34,17 @@ struct LatexRunParams {
        */
        bool nice;
 
-       /** fragile == true means that the inset should take care about
+       /** moving_arg == true means that the environment in which the inset
+           is typeset is a moving argument. The inset should take care about
            fragile commands by preceding the latex with \protect.
        */
-       bool fragile;
+       bool moving_arg;
 
        /** free_spacing == true means that the inset is in a free-spacing
            paragraph.
        */
        bool free_spacing;
-       
+
        /** This var is set by the return value from BufferParams::writeLaTeX
         */
        bool use_babel;