]> git.lyx.org Git - lyx.git/blobdiff - src/tex-accent.C
fix typo that put too many include paths for most people
[lyx.git] / src / tex-accent.C
index bcbeff0399df1b73da3bdf0444c43e30545d39e2..eb65f1df6a90a73c71e5a4988a0af36943dda4a0 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
- * ====================================================== 
- * 
+ * ======================================================
+ *
  *           LyX, The Document Processor
- *        
+ *
  *           Copyright 1995 Matthias Ettrich
  *           Copyright 1995-2001 The LyX Team.
  *
@@ -75,7 +75,7 @@ tex_accent_struct lyx_accent_table[18] = {
 tex_accent_struct get_accent(kb_action action)
 {
        int i = 0;
-       while (i <= TEX_MAX_ACCENT){
+       while (i <= TEX_MAX_ACCENT) {
                if (lyx_accent_table[i].action == action)
                        return lyx_accent_table[i];
                ++i;
@@ -89,7 +89,7 @@ tex_accent_struct get_accent(kb_action action)
 string const DoAccent(string const & s, tex_accent accent)
 {
        string res;
-       
+
        res += lyx_accent_table[accent].cmd;
        res += '{';
        if (s == "i" || s == "j") {
@@ -105,4 +105,3 @@ string const DoAccent(char c, tex_accent accent)
 {
        return DoAccent(tostr(c), accent);
 }
-