[gnome-devel-docs] programming-guidelines: Properly escape some entities



commit ef170f50cbe7e1aeef3bd56b71db134350ba9d1b
Author: Federico Mena Quintero <federico gnome org>
Date:   Mon Aug 12 17:34:55 2013 -0500

    programming-guidelines: Properly escape some entities

 programming-guidelines/C/c-coding-style.page |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/programming-guidelines/C/c-coding-style.page b/programming-guidelines/C/c-coding-style.page
index 71e51e8..ed8992f 100644
--- a/programming-guidelines/C/c-coding-style.page
+++ b/programming-guidelines/C/c-coding-style.page
@@ -707,8 +707,8 @@ gint          gtk_type_update_foobar      (GtkType *type);
     </p>
 
     <code>
-#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
-#error "Only <gtk/gtk.h> can be included directly."
+#if !defined (__GTK_H_INSIDE__) &amp;&amp; !defined (GTK_COMPILATION)
+#error "Only &lt;gtk/gtk.h&gt; can be included directly."
 #endif
     </code>
 
@@ -722,7 +722,7 @@ gint          gtk_type_update_foobar      (GtkType *type);
 #ifndef __MYLIB_FOO_H__
 #define __MYLIB_FOO_H__
 
-#include <gtk/gtk.h>
+#include &lt;gtk/gtk.h&gt;
 
 G_BEGIN_DECLS
 


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