Add highlighting for Fortran 90
[enscript.git] / states / hl / zsh.st
index 64be45e..a367f7f 100644 (file)
@@ -22,6 +22,17 @@ state zsh extends HighlightEntry
     string_face (false);
   }
 
+  /* Ignore escaped quote marks */
+  /\\\"/ {
+    language_print ($0);
+  }
+  /\\\'/ {
+    language_print ($0);
+  }
+  /\\\`/ {
+    language_print ($0);
+  }
+
   /* Excutable script. */
   /^#!/ {
     reference_face (true);