Use gettext.h instead of own libintl.h include.
[enscript.git] / states / hl / csh.st
index 553b1d79b666d4ee1821b3d7aa522e17b9cc5f0e..34e2a3754e491c11d903df85cd029ee6735965b5 100644 (file)
@@ -22,6 +22,17 @@ state csh extends HighlightEntry
     string_face (false);
   }
 
+  /* Ignore escaped quote marks */
+  /\\\"/ {
+    language_print ($0);
+  }
+  /\\\'/ {
+    language_print ($0);
+  }
+  /\\\`/ {
+    language_print ($0);
+  }
+
   /* Excutable script. From sh */
   /^#!/ {
     reference_face (true);