Add highlighting for Fortran 90
[enscript.git] / states / hl / tcsh.st
index c9ec499eb74795047dababa7d3f76a1f16694a47..d3475b4f8627d6e63e3b5fd252255e35be1504d7 100644 (file)
@@ -22,6 +22,17 @@ state tcsh 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);