gtksourceview3 1.2.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (562) hide show
  1. data/README +29 -0
  2. data/Rakefile +29 -0
  3. data/ext/gtksourceview3/depend +6 -0
  4. data/ext/gtksourceview3/extconf.rb +76 -0
  5. data/ext/gtksourceview3/gtksourceview3.def +2 -0
  6. data/ext/gtksourceview3/rbgtksource.c +53 -0
  7. data/ext/gtksourceview3/rbgtksourcebuffer.c +318 -0
  8. data/ext/gtksourceview3/rbgtksourcegutter.c +82 -0
  9. data/ext/gtksourceview3/rbgtksourcegutterrenderer.c +143 -0
  10. data/ext/gtksourceview3/rbgtksourcegutterrendererpixbuf.c +42 -0
  11. data/ext/gtksourceview3/rbgtksourcegutterrenderertext.c +64 -0
  12. data/ext/gtksourceview3/rbgtksourcelanguage.c +124 -0
  13. data/ext/gtksourceview3/rbgtksourcelanguagemanager.c +114 -0
  14. data/ext/gtksourceview3/rbgtksourcemark.c +85 -0
  15. data/ext/gtksourceview3/rbgtksourcemarkattributes.c +77 -0
  16. data/ext/gtksourceview3/rbgtksourceprintcompositor.c +171 -0
  17. data/ext/gtksourceview3/rbgtksourcestyle.c +42 -0
  18. data/ext/gtksourceview3/rbgtksourcestylescheme.c +72 -0
  19. data/ext/gtksourceview3/rbgtksourcestyleschememanager.c +140 -0
  20. data/ext/gtksourceview3/rbgtksourceundomanager.c +83 -0
  21. data/ext/gtksourceview3/rbgtksourceview.c +94 -0
  22. data/ext/gtksourceview3/rbgtksourceview3conversions.h +43 -0
  23. data/ext/gtksourceview3/rbgtksourceview3private.h +54 -0
  24. data/extconf.rb +49 -0
  25. data/lib/1.8/gtksourceview3.so +0 -0
  26. data/lib/1.9/gtksourceview3.so +0 -0
  27. data/lib/gtksourceview3.rb +20 -0
  28. data/lib/gtksourceview3/deprecated.rb +47 -0
  29. data/sample/sourcelanguagemanager.rb +21 -0
  30. data/sample/test.rb +32 -0
  31. data/test/run-test.rb +33 -0
  32. data/test/test_source_view.rb +17 -0
  33. data/vendor/local/bin/libgtksourceview-3.0-0.dll +0 -0
  34. data/vendor/local/bin/libxml2-2.dll +0 -0
  35. data/vendor/local/bin/xmlcatalog.exe +0 -0
  36. data/vendor/local/bin/xmllint.exe +0 -0
  37. data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +66 -0
  38. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +46 -0
  39. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +199 -0
  40. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +129 -0
  41. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +94 -0
  42. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +73 -0
  43. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +71 -0
  44. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +76 -0
  45. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +118 -0
  46. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
  47. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +222 -0
  48. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +85 -0
  49. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
  50. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +87 -0
  51. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +85 -0
  52. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
  53. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +99 -0
  54. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +176 -0
  55. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +41 -0
  56. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +93 -0
  57. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +89 -0
  58. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +62 -0
  59. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +77 -0
  60. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +55 -0
  61. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +223 -0
  62. data/vendor/local/include/libxml2/libxml/DOCBparser.h +96 -0
  63. data/vendor/local/include/libxml2/libxml/HTMLparser.h +306 -0
  64. data/vendor/local/include/libxml2/libxml/HTMLtree.h +147 -0
  65. data/vendor/local/include/libxml2/libxml/SAX.h +173 -0
  66. data/vendor/local/include/libxml2/libxml/SAX2.h +176 -0
  67. data/vendor/local/include/libxml2/libxml/c14n.h +126 -0
  68. data/vendor/local/include/libxml2/libxml/catalog.h +182 -0
  69. data/vendor/local/include/libxml2/libxml/chvalid.h +230 -0
  70. data/vendor/local/include/libxml2/libxml/debugXML.h +217 -0
  71. data/vendor/local/include/libxml2/libxml/dict.h +80 -0
  72. data/vendor/local/include/libxml2/libxml/encoding.h +240 -0
  73. data/vendor/local/include/libxml2/libxml/entities.h +150 -0
  74. data/vendor/local/include/libxml2/libxml/globals.h +502 -0
  75. data/vendor/local/include/libxml2/libxml/hash.h +233 -0
  76. data/vendor/local/include/libxml2/libxml/list.h +137 -0
  77. data/vendor/local/include/libxml2/libxml/nanoftp.h +163 -0
  78. data/vendor/local/include/libxml2/libxml/nanohttp.h +81 -0
  79. data/vendor/local/include/libxml2/libxml/parser.h +1240 -0
  80. data/vendor/local/include/libxml2/libxml/parserInternals.h +644 -0
  81. data/vendor/local/include/libxml2/libxml/pattern.h +100 -0
  82. data/vendor/local/include/libxml2/libxml/relaxng.h +213 -0
  83. data/vendor/local/include/libxml2/libxml/schemasInternals.h +958 -0
  84. data/vendor/local/include/libxml2/libxml/schematron.h +142 -0
  85. data/vendor/local/include/libxml2/libxml/threads.h +84 -0
  86. data/vendor/local/include/libxml2/libxml/tree.h +1303 -0
  87. data/vendor/local/include/libxml2/libxml/uri.h +94 -0
  88. data/vendor/local/include/libxml2/libxml/valid.h +458 -0
  89. data/vendor/local/include/libxml2/libxml/xinclude.h +129 -0
  90. data/vendor/local/include/libxml2/libxml/xlink.h +189 -0
  91. data/vendor/local/include/libxml2/libxml/xmlIO.h +366 -0
  92. data/vendor/local/include/libxml2/libxml/xmlautomata.h +146 -0
  93. data/vendor/local/include/libxml2/libxml/xmlerror.h +944 -0
  94. data/vendor/local/include/libxml2/libxml/xmlexports.h +162 -0
  95. data/vendor/local/include/libxml2/libxml/xmlmemory.h +224 -0
  96. data/vendor/local/include/libxml2/libxml/xmlmodule.h +57 -0
  97. data/vendor/local/include/libxml2/libxml/xmlreader.h +428 -0
  98. data/vendor/local/include/libxml2/libxml/xmlregexp.h +222 -0
  99. data/vendor/local/include/libxml2/libxml/xmlsave.h +88 -0
  100. data/vendor/local/include/libxml2/libxml/xmlschemas.h +246 -0
  101. data/vendor/local/include/libxml2/libxml/xmlschemastypes.h +151 -0
  102. data/vendor/local/include/libxml2/libxml/xmlstring.h +140 -0
  103. data/vendor/local/include/libxml2/libxml/xmlunicode.h +202 -0
  104. data/vendor/local/include/libxml2/libxml/xmlversion.h +480 -0
  105. data/vendor/local/include/libxml2/libxml/xmlwriter.h +488 -0
  106. data/vendor/local/include/libxml2/libxml/xpath.h +550 -0
  107. data/vendor/local/include/libxml2/libxml/xpathInternals.h +632 -0
  108. data/vendor/local/include/libxml2/libxml/xpointer.h +114 -0
  109. data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
  110. data/vendor/local/lib/libgtksourceview-3.0.la +41 -0
  111. data/vendor/local/lib/libxml2.def +1659 -0
  112. data/vendor/local/lib/libxml2.dll.a +0 -0
  113. data/vendor/local/lib/libxml2.lib +0 -0
  114. data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  115. data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  116. data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  117. data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  118. data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  119. data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  120. data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  121. data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  122. data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  123. data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  124. data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  125. data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  126. data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  127. data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  128. data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  129. data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  130. data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  131. data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  132. data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  133. data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  134. data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  135. data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  136. data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  137. data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  138. data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  139. data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  140. data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  141. data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  142. data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  143. data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  144. data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  145. data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  146. data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  147. data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  148. data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  149. data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  150. data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  151. data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  152. data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  153. data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  154. data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  155. data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  156. data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  157. data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  158. data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  159. data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  160. data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  161. data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  162. data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  163. data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  164. data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  165. data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  166. data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  167. data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  168. data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  169. data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  170. data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  171. data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  172. data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  173. data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  174. data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  175. data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  176. data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  177. data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  178. data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  179. data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  180. data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  181. data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  182. data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  183. data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  184. data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  185. data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  186. data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  187. data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  188. data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  189. data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  190. data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  191. data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  192. data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  193. data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +12 -0
  194. data/vendor/local/lib/pkgconfig/libxml-2.0.pc +13 -0
  195. data/vendor/local/manifest/libxml2-dev_2.9.0-1_win32.mft +268 -0
  196. data/vendor/local/manifest/libxml2_2.9.0-1_win32.mft +2 -0
  197. data/vendor/local/share/aclocal/libxml.m4 +188 -0
  198. data/vendor/local/share/doc/libxml2-2.9.0/Copyright +27 -0
  199. data/vendor/local/share/doc/libxml2-2.9.0/examples/testHTML.c +880 -0
  200. data/vendor/local/share/doc/libxml2-2.9.0/examples/testSAX.c +1198 -0
  201. data/vendor/local/share/doc/libxml2-2.9.0/examples/testXPath.c +229 -0
  202. data/vendor/local/share/doc/libxml2-2.9.0/examples/xmllint.c +3770 -0
  203. data/vendor/local/share/doc/libxml2-2.9.0/html/DOM.gif +0 -0
  204. data/vendor/local/share/doc/libxml2-2.9.0/html/FAQ.html +282 -0
  205. data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-180x168.gif +0 -0
  206. data/vendor/local/share/doc/libxml2-2.9.0/html/Libxml2-Logo-90x34.gif +0 -0
  207. data/vendor/local/share/doc/libxml2-2.9.0/html/encoding.html +207 -0
  208. data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xml +751 -0
  209. data/vendor/local/share/doc/libxml2-2.9.0/html/examples.xsl +174 -0
  210. data/vendor/local/share/doc/libxml2-2.9.0/html/html/book1.html +13 -0
  211. data/vendor/local/share/doc/libxml2-2.9.0/html/html/home.png +0 -0
  212. data/vendor/local/share/doc/libxml2-2.9.0/html/html/index.html +13 -0
  213. data/vendor/local/share/doc/libxml2-2.9.0/html/html/left.png +0 -0
  214. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-DOCBparser.html +51 -0
  215. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLparser.html +184 -0
  216. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-HTMLtree.html +73 -0
  217. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX.html +125 -0
  218. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-SAX2.html +128 -0
  219. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-c14n.html +38 -0
  220. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-catalog.html +142 -0
  221. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-chvalid.html +72 -0
  222. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-debugXML.html +120 -0
  223. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-dict.html +58 -0
  224. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-encoding.html +124 -0
  225. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-entities.html +79 -0
  226. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-globals.html +152 -0
  227. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-hash.html +116 -0
  228. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-lib.html +13 -0
  229. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-list.html +120 -0
  230. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanoftp.html +94 -0
  231. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-nanohttp.html +65 -0
  232. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parser.html +559 -0
  233. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-parserInternals.html +322 -0
  234. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-pattern.html +76 -0
  235. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-relaxng.html +162 -0
  236. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schemasInternals.html +373 -0
  237. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-schematron.html +81 -0
  238. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-threads.html +72 -0
  239. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-tree.html +989 -0
  240. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-uri.html +73 -0
  241. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-valid.html +289 -0
  242. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xinclude.html +59 -0
  243. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xlink.html +82 -0
  244. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlIO.html +212 -0
  245. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlautomata.html +85 -0
  246. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlerror.html +864 -0
  247. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlexports.html +20 -0
  248. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmemory.html +107 -0
  249. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlmodule.html +38 -0
  250. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlreader.html +330 -0
  251. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlregexp.html +143 -0
  252. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlsave.html +60 -0
  253. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemas.html +185 -0
  254. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlschemastypes.html +123 -0
  255. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlstring.html +108 -0
  256. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlunicode.html +512 -0
  257. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlversion.html +62 -0
  258. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xmlwriter.html +261 -0
  259. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpath.html +310 -0
  260. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpathInternals.html +394 -0
  261. data/vendor/local/share/doc/libxml2-2.9.0/html/html/libxml-xpointer.html +83 -0
  262. data/vendor/local/share/doc/libxml2-2.9.0/html/html/right.png +0 -0
  263. data/vendor/local/share/doc/libxml2-2.9.0/html/html/up.png +0 -0
  264. data/vendor/local/share/doc/libxml2-2.9.0/html/index.html +14 -0
  265. data/vendor/local/share/doc/libxml2-2.9.0/html/io1.c +166 -0
  266. data/vendor/local/share/doc/libxml2-2.9.0/html/io1.res +5 -0
  267. data/vendor/local/share/doc/libxml2-2.9.0/html/io2.c +58 -0
  268. data/vendor/local/share/doc/libxml2-2.9.0/html/io2.res +2 -0
  269. data/vendor/local/share/doc/libxml2-2.9.0/html/libxml.gif +0 -0
  270. data/vendor/local/share/doc/libxml2-2.9.0/html/parse1.c +56 -0
  271. data/vendor/local/share/doc/libxml2-2.9.0/html/parse2.c +72 -0
  272. data/vendor/local/share/doc/libxml2-2.9.0/html/parse3.c +60 -0
  273. data/vendor/local/share/doc/libxml2-2.9.0/html/parse4.c +143 -0
  274. data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.c +107 -0
  275. data/vendor/local/share/doc/libxml2-2.9.0/html/reader1.res +14 -0
  276. data/vendor/local/share/doc/libxml2-2.9.0/html/reader2.c +122 -0
  277. data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.c +120 -0
  278. data/vendor/local/share/doc/libxml2-2.9.0/html/reader3.res +13 -0
  279. data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.c +122 -0
  280. data/vendor/local/share/doc/libxml2-2.9.0/html/reader4.res +3 -0
  281. data/vendor/local/share/doc/libxml2-2.9.0/html/redhat.gif +0 -0
  282. data/vendor/local/share/doc/libxml2-2.9.0/html/smallfootonly.gif +0 -0
  283. data/vendor/local/share/doc/libxml2-2.9.0/html/structure.gif +0 -0
  284. data/vendor/local/share/doc/libxml2-2.9.0/html/test1.xml +1 -0
  285. data/vendor/local/share/doc/libxml2-2.9.0/html/test2.xml +13 -0
  286. data/vendor/local/share/doc/libxml2-2.9.0/html/test3.xml +39 -0
  287. data/vendor/local/share/doc/libxml2-2.9.0/html/testWriter.c +1198 -0
  288. data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.c +94 -0
  289. data/vendor/local/share/doc/libxml2-2.9.0/html/tree1.res +4 -0
  290. data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.c +118 -0
  291. data/vendor/local/share/doc/libxml2-2.9.0/html/tree2.res +18 -0
  292. data/vendor/local/share/doc/libxml2-2.9.0/html/tst.xml +7 -0
  293. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apa.html +8 -0
  294. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apb.html +14 -0
  295. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apc.html +82 -0
  296. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apd.html +76 -0
  297. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ape.html +78 -0
  298. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apf.html +67 -0
  299. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/apg.html +75 -0
  300. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/aph.html +76 -0
  301. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/api.html +4 -0
  302. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s02.html +14 -0
  303. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s03.html +47 -0
  304. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s04.html +54 -0
  305. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s05.html +55 -0
  306. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s06.html +35 -0
  307. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s07.html +30 -0
  308. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s08.html +38 -0
  309. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ar01s09.html +63 -0
  310. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/blank.png +0 -0
  311. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/1.png +0 -0
  312. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/10.png +0 -0
  313. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/2.png +0 -0
  314. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/3.png +0 -0
  315. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/4.png +0 -0
  316. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/5.png +0 -0
  317. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/6.png +0 -0
  318. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/7.png +0 -0
  319. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/8.png +0 -0
  320. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/callouts/9.png +0 -0
  321. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/caution.png +0 -0
  322. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/draft.png +0 -0
  323. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/home.png +0 -0
  324. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/important.png +0 -0
  325. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/next.png +0 -0
  326. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/note.png +0 -0
  327. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/prev.png +0 -0
  328. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/tip.png +0 -0
  329. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-blank.png +0 -0
  330. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-minus.png +0 -0
  331. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/toc-plus.png +0 -0
  332. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/up.png +0 -0
  333. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/images/warning.png +0 -0
  334. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddattribute.c +64 -0
  335. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeaddkeyword.c +75 -0
  336. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includeconvert.c +73 -0
  337. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includegetattribute.c +72 -0
  338. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includekeyword.c +79 -0
  339. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/includexpath.c +74 -0
  340. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/index.html +14 -0
  341. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/ix01.html +1 -0
  342. data/vendor/local/share/doc/libxml2-2.9.0/html/tutorial/xmltutorial.pdf +1336 -0
  343. data/vendor/local/share/doc/libxml2-2.9.0/html/w3c.png +0 -0
  344. data/vendor/local/share/doc/libxml2-2.9.0/html/writer.xml +2 -0
  345. data/vendor/local/share/doc/libxml2-2.9.0/html/xml.html +5715 -0
  346. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.c +250 -0
  347. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath1.res +5 -0
  348. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.c +190 -0
  349. data/vendor/local/share/doc/libxml2-2.9.0/html/xpath2.res +30 -0
  350. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +1346 -0
  351. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +756 -0
  352. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +300 -0
  353. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +243 -0
  354. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +282 -0
  355. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +364 -0
  356. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +474 -0
  357. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +288 -0
  358. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +425 -0
  359. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +414 -0
  360. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +250 -0
  361. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +699 -0
  362. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +1822 -0
  363. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +228 -0
  364. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +296 -0
  365. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +357 -0
  366. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +346 -0
  367. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1462 -0
  368. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +80 -0
  369. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +46 -0
  370. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +31 -0
  371. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +1538 -0
  372. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRenderer.html +956 -0
  373. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRendererPixbuf.html +199 -0
  374. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceGutterRendererText.html +137 -0
  375. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +445 -0
  376. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/home.png +0 -0
  377. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +117 -0
  378. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +578 -0
  379. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +771 -0
  380. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +651 -0
  381. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left.png +0 -0
  382. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right.png +0 -0
  383. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/rn01.html +101 -0
  384. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/rn02.html +53 -0
  385. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +252 -0
  386. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +266 -0
  387. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up.png +0 -0
  388. data/vendor/local/share/gtk-doc/html/libxml2/general.html +38 -0
  389. data/vendor/local/share/gtk-doc/html/libxml2/home.png +0 -0
  390. data/vendor/local/share/gtk-doc/html/libxml2/index.html +67 -0
  391. data/vendor/local/share/gtk-doc/html/libxml2/left.png +0 -0
  392. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-DOCBparser.html +138 -0
  393. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +373 -0
  394. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +172 -0
  395. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +243 -0
  396. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +247 -0
  397. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +91 -0
  398. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +278 -0
  399. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +241 -0
  400. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +225 -0
  401. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-dict.html +134 -0
  402. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +218 -0
  403. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-entities.html +166 -0
  404. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-globals.html +383 -0
  405. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-hash.html +214 -0
  406. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-list.html +226 -0
  407. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +187 -0
  408. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +142 -0
  409. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parser.html +766 -0
  410. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +688 -0
  411. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +166 -0
  412. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +278 -0
  413. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +860 -0
  414. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +166 -0
  415. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-threads.html +161 -0
  416. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-tree.html +1596 -0
  417. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-uri.html +154 -0
  418. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-valid.html +528 -0
  419. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +169 -0
  420. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +160 -0
  421. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +347 -0
  422. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +176 -0
  423. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +952 -0
  424. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +87 -0
  425. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +186 -0
  426. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +97 -0
  427. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +565 -0
  428. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +280 -0
  429. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +133 -0
  430. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +314 -0
  431. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +237 -0
  432. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +217 -0
  433. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +887 -0
  434. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +287 -0
  435. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +479 -0
  436. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +532 -0
  437. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +787 -0
  438. data/vendor/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +171 -0
  439. data/vendor/local/share/gtk-doc/html/libxml2/libxml2.devhelp +3569 -0
  440. data/vendor/local/share/gtk-doc/html/libxml2/right.png +0 -0
  441. data/vendor/local/share/gtk-doc/html/libxml2/style.css +66 -0
  442. data/vendor/local/share/gtk-doc/html/libxml2/up.png +0 -0
  443. data/vendor/local/share/gtksourceview-3.0/language-specs/R.lang +130 -0
  444. data/vendor/local/share/gtksourceview-3.0/language-specs/actionscript.lang +268 -0
  445. data/vendor/local/share/gtksourceview-3.0/language-specs/ada.lang +221 -0
  446. data/vendor/local/share/gtksourceview-3.0/language-specs/asp.lang +1097 -0
  447. data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +329 -0
  448. data/vendor/local/share/gtksourceview-3.0/language-specs/awk.lang +138 -0
  449. data/vendor/local/share/gtksourceview-3.0/language-specs/bennugd.lang +267 -0
  450. data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +93 -0
  451. data/vendor/local/share/gtksourceview-3.0/language-specs/boo.lang +257 -0
  452. data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +332 -0
  453. data/vendor/local/share/gtksourceview-3.0/language-specs/cg.lang +232 -0
  454. data/vendor/local/share/gtksourceview-3.0/language-specs/changelog.lang +92 -0
  455. data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
  456. data/vendor/local/share/gtksourceview-3.0/language-specs/check-language.sh +32 -0
  457. data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +408 -0
  458. data/vendor/local/share/gtksourceview-3.0/language-specs/cobol.lang +456 -0
  459. data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +114 -0
  460. data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +282 -0
  461. data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +537 -0
  462. data/vendor/local/share/gtksourceview-3.0/language-specs/cuda.lang +292 -0
  463. data/vendor/local/share/gtksourceview-3.0/language-specs/d.lang +296 -0
  464. data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +252 -0
  465. data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +300 -0
  466. data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +85 -0
  467. data/vendor/local/share/gtksourceview-3.0/language-specs/docbook.lang +476 -0
  468. data/vendor/local/share/gtksourceview-3.0/language-specs/dosbatch.lang +167 -0
  469. data/vendor/local/share/gtksourceview-3.0/language-specs/dot.lang +140 -0
  470. data/vendor/local/share/gtksourceview-3.0/language-specs/dpatch.lang +48 -0
  471. data/vendor/local/share/gtksourceview-3.0/language-specs/dtd.lang +140 -0
  472. data/vendor/local/share/gtksourceview-3.0/language-specs/eiffel.lang +239 -0
  473. data/vendor/local/share/gtksourceview-3.0/language-specs/erlang.lang +258 -0
  474. data/vendor/local/share/gtksourceview-3.0/language-specs/fcl.lang +115 -0
  475. data/vendor/local/share/gtksourceview-3.0/language-specs/forth.lang +235 -0
  476. data/vendor/local/share/gtksourceview-3.0/language-specs/fortran.lang +512 -0
  477. data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +325 -0
  478. data/vendor/local/share/gtksourceview-3.0/language-specs/gap.lang +85 -0
  479. data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +152 -0
  480. data/vendor/local/share/gtksourceview-3.0/language-specs/glsl.lang +483 -0
  481. data/vendor/local/share/gtksourceview-3.0/language-specs/go.lang +275 -0
  482. data/vendor/local/share/gtksourceview-3.0/language-specs/gtk-doc.lang +91 -0
  483. data/vendor/local/share/gtksourceview-3.0/language-specs/gtkrc.lang +116 -0
  484. data/vendor/local/share/gtksourceview-3.0/language-specs/haddock.lang +162 -0
  485. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell-literate.lang +59 -0
  486. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell.lang +228 -0
  487. data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +180 -0
  488. data/vendor/local/share/gtksourceview-3.0/language-specs/idl.lang +154 -0
  489. data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +784 -0
  490. data/vendor/local/share/gtksourceview-3.0/language-specs/ini.lang +95 -0
  491. data/vendor/local/share/gtksourceview-3.0/language-specs/j.lang +240 -0
  492. data/vendor/local/share/gtksourceview-3.0/language-specs/java.lang +190 -0
  493. data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +338 -0
  494. data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -0
  495. data/vendor/local/share/gtksourceview-3.0/language-specs/language.dtd +73 -0
  496. data/vendor/local/share/gtksourceview-3.0/language-specs/language.rng +373 -0
  497. data/vendor/local/share/gtksourceview-3.0/language-specs/language2.rng +482 -0
  498. data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +300 -0
  499. data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -0
  500. data/vendor/local/share/gtksourceview-3.0/language-specs/lua.lang +157 -0
  501. data/vendor/local/share/gtksourceview-3.0/language-specs/m4.lang +1375 -0
  502. data/vendor/local/share/gtksourceview-3.0/language-specs/makefile.lang +193 -0
  503. data/vendor/local/share/gtksourceview-3.0/language-specs/mallard.lang +124 -0
  504. data/vendor/local/share/gtksourceview-3.0/language-specs/markdown.lang +402 -0
  505. data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +171 -0
  506. data/vendor/local/share/gtksourceview-3.0/language-specs/mxml.lang +65 -0
  507. data/vendor/local/share/gtksourceview-3.0/language-specs/nemerle.lang +263 -0
  508. data/vendor/local/share/gtksourceview-3.0/language-specs/netrexx.lang +319 -0
  509. data/vendor/local/share/gtksourceview-3.0/language-specs/nsis.lang +88 -0
  510. data/vendor/local/share/gtksourceview-3.0/language-specs/objc.lang +120 -0
  511. data/vendor/local/share/gtksourceview-3.0/language-specs/objj.lang +128 -0
  512. data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +302 -0
  513. data/vendor/local/share/gtksourceview-3.0/language-specs/ocl.lang +139 -0
  514. data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +859 -0
  515. data/vendor/local/share/gtksourceview-3.0/language-specs/ooc.lang +265 -0
  516. data/vendor/local/share/gtksourceview-3.0/language-specs/opal.lang +343 -0
  517. data/vendor/local/share/gtksourceview-3.0/language-specs/opencl.lang +600 -0
  518. data/vendor/local/share/gtksourceview-3.0/language-specs/pascal.lang +268 -0
  519. data/vendor/local/share/gtksourceview-3.0/language-specs/perl.lang +1028 -0
  520. data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +361 -0
  521. data/vendor/local/share/gtksourceview-3.0/language-specs/pkgconfig.lang +62 -0
  522. data/vendor/local/share/gtksourceview-3.0/language-specs/po.lang +94 -0
  523. data/vendor/local/share/gtksourceview-3.0/language-specs/prolog.lang +249 -0
  524. data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +103 -0
  525. data/vendor/local/share/gtksourceview-3.0/language-specs/puppet.lang +697 -0
  526. data/vendor/local/share/gtksourceview-3.0/language-specs/python.lang +413 -0
  527. data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +192 -0
  528. data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +210 -0
  529. data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +591 -0
  530. data/vendor/local/share/gtksourceview-3.0/language-specs/scheme.lang +302 -0
  531. data/vendor/local/share/gtksourceview-3.0/language-specs/scilab.lang +209 -0
  532. data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +499 -0
  533. data/vendor/local/share/gtksourceview-3.0/language-specs/sml.lang +201 -0
  534. data/vendor/local/share/gtksourceview-3.0/language-specs/sparql.lang +448 -0
  535. data/vendor/local/share/gtksourceview-3.0/language-specs/sql.lang +618 -0
  536. data/vendor/local/share/gtksourceview-3.0/language-specs/systemverilog.lang +263 -0
  537. data/vendor/local/share/gtksourceview-3.0/language-specs/t2t.lang +150 -0
  538. data/vendor/local/share/gtksourceview-3.0/language-specs/tcl.lang +146 -0
  539. data/vendor/local/share/gtksourceview-3.0/language-specs/texinfo.lang +448 -0
  540. data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +365 -0
  541. data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +245 -0
  542. data/vendor/local/share/gtksourceview-3.0/language-specs/verilog.lang +464 -0
  543. data/vendor/local/share/gtksourceview-3.0/language-specs/vhdl.lang +248 -0
  544. data/vendor/local/share/gtksourceview-3.0/language-specs/xml.lang +220 -0
  545. data/vendor/local/share/gtksourceview-3.0/language-specs/xslt.lang +108 -0
  546. data/vendor/local/share/gtksourceview-3.0/language-specs/yacc.lang +177 -0
  547. data/vendor/local/share/gtksourceview-3.0/styles/check-style.sh +20 -0
  548. data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +107 -0
  549. data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +135 -0
  550. data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +161 -0
  551. data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +117 -0
  552. data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +139 -0
  553. data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +117 -0
  554. data/vendor/local/share/license/gtksourceview/AUTHORS +12 -0
  555. data/vendor/local/share/license/gtksourceview/COPYING +340 -0
  556. data/vendor/local/share/man/man1/xml2-config.1 +30 -0
  557. data/vendor/local/share/man/man1/xmlcatalog.1 +340 -0
  558. data/vendor/local/share/man/man1/xmllint.1 +427 -0
  559. data/vendor/local/share/man/man3/libxml.3 +71 -0
  560. data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.log +867 -0
  561. data/vendor/local/src/dieterv/packaging/libxml2_2.9.0-1_win32.sh +68 -0
  562. metadata +642 -0
@@ -0,0 +1,1375 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ This file is part of GtkSourceView
5
+
6
+ Author: Yevgen Muntyan <muntyan@tamu.edu>
7
+ Copyright (C) 2006-2007 Yevgen Muntyan <muntyan@tamu.edu>
8
+
9
+ GtkSourceView is free software; you can redistribute it and/or
10
+ modify it under the terms of the GNU Lesser General Public
11
+ License as published by the Free Software Foundation; either
12
+ version 2.1 of the License, or (at your option) any later version.
13
+
14
+ GtkSourceView is distributed in the hope that it will be useful,
15
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
+ Lesser General Public License for more details.
18
+
19
+ You should have received a copy of the GNU Lesser General Public
20
+ License along with this library; if not, write to the Free Software
21
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
+
23
+ -->
24
+ <language id="m4" _name="m4" _section="Scripts" version="2.0">
25
+ <metadata>
26
+ <property name="mimetypes">application/x-m4</property>
27
+ <property name="globs">*.m4;configure.ac;configure.in</property>
28
+ <property name="line-comment-start">#</property>
29
+ </metadata>
30
+
31
+ <styles>
32
+ <style id="m4-comment" _name="m4-comment" map-to="sh:comment"/>
33
+ <style id="m4-macro" _name="m4 Macro" map-to="def:keyword"/>
34
+ <style id="ac-macro" _name="Autoconf Macro" map-to="def:keyword"/>
35
+ <style id="ac-macro-obsolete" _name="Obsolete Autoconf Macro" map-to="def:error"/>
36
+ </styles>
37
+
38
+ <!--
39
+ Refurbished and commented 2010 by P. F. Chimento <philip.chimento@gmail.com>
40
+
41
+ How this language definition works.
42
+
43
+ This 'm4' language definition actually highlights Autoconf M4 files. Autoconf
44
+ consists of several parts: Autoconf, M4sugar, M4sh, Autoheader, Autoupdate,
45
+ and Autotest, all of which define their own M4 macros. In addition, this file
46
+ also highlights other M4 macros commonly used with Autoconf (those defined by
47
+ Automake, Libtool, Gettext, and Pkgconfig) and ones used for building GTK
48
+ packages (Intltool, Glib, and GConf).
49
+
50
+ This language definition ironically does _not_ support pure M4 files: M4sugar
51
+ redefines all the built-in M4 macros so that they start with m4_, and
52
+ redefines the quote characters from `' to [].
53
+
54
+ Autoconf's configure.ac files are processed by M4 into configure shell
55
+ scripts. Therefore, text that is to appear in the output is actually shell
56
+ script, and should be highlighted as such. However, some macros have arguments
57
+ that are not meant to appear in the output, and it depends on the macro.
58
+ For example, the macro
59
+ AC_CHECK_FILE(file, [action-if-found], [action-if-not-found])
60
+ has three arguments, the first one of which should not contain shell script.
61
+ The remaining two can contain shell code, as well as other macros. Therefore,
62
+ we divide the macros into categories depending on the number and type of their
63
+ arguments: a string of 'm' (for M4 only) and 's' (for shell script mixed with
64
+ M4) characters.
65
+
66
+ TODO: In a future version, we might add 'c' to the mix, since some macros'
67
+ arguments actually contain C code. Right now this is just highlighted as M4.
68
+
69
+ Note that keeping track of the number of arguments to a macro also allows us
70
+ to highlight any extra arguments as errors. Also, note that calling a macro
71
+ with _fewer_ arguments is allowed, and in fact happens all the time. For
72
+ example, in AC_CHECK_FILE above, the second and third arguments are optional
73
+ and in fact have sensible defaults.
74
+
75
+ Below, we define regexes, with names like 'macros-mss' that match every macro
76
+ with that signature.
77
+
78
+ IMPORTANT: if you add any macros, make sure that you make all your parentheses
79
+ non-capturing by adding ?: to them! Otherwise, the highlighting will break
80
+ (and in fact was broken in earlier versions of this file.)
81
+ -->
82
+ <definitions>
83
+ <define-regex id="macros-m" extended="true">
84
+ AC_(?:
85
+ CHECK_(?:DECL|FUNC|HEADER)S_ONCE|
86
+ CHECKING|
87
+ CONFIG_(?:(?:(?:AUX|LIBOBJ|MACRO)_|SRC)DIR|SUBDIRS)|
88
+ COPYRIGHT|
89
+ ERLANG_NEED_ERLC?|
90
+ F(?:77|C)_LIBRARY_LDFLAGS|
91
+ FATAL
92
+ INCLUDES_DEFAULT
93
+ LANG(?:_(?:ASSERT|CONFTEST|FUNC_LINK_TRY|POP|PUSH|SOURCE))?|
94
+ LIB(?:OBJS|SOURCES?)|
95
+ MSG_(?:CHECKING|NOTICE|RESULT|WARN)|
96
+ OPENMP|
97
+ PREFIX_(?:DEFAULT|PROGRAM)|
98
+ PREREQ|
99
+ PROG_(?:CC|CXX|F77|OBJC(?:XX)?)|
100
+ REPLACE_FUNCS|
101
+ REQUIRE(?:_AUX_FILE)?|
102
+ REVISION|
103
+ SUBST_FILE|
104
+ WARNING)|
105
+ AH_(?:BOTTOM|TOP)|
106
+ AS_(?:
107
+ DIRNAME|
108
+ EXIT|
109
+ MKDIR_P|
110
+ SET_STATUS|
111
+ TR_(?:CPP|SH)|
112
+ VAR_(?:POPDEF|TEST_SET))|
113
+ m4_(?:
114
+ chomp(?:_all)?|
115
+ cleardivert|
116
+ debug(?:file|mode)|
117
+ decr|
118
+ defn|
119
+ divert(?:_(?:pop|push))?|
120
+ errprintn|
121
+ (?:re_)?escape|
122
+ exit|
123
+ expand|
124
+ flatten|
125
+ s?include|
126
+ incr|
127
+ len|
128
+ (?:make|mks)temp|
129
+ n|
130
+ newline|
131
+ normalize|
132
+ pattern_(?:allow|forbid)|
133
+ popdef|
134
+ set_(?:delete|list|listc|size)|
135
+ sign|
136
+ strip|
137
+ to(?:lower|upper)|
138
+ warning|
139
+ wrap(?:_lifo)?)|
140
+ AT_(?:BANNER|CAPTURE_FILE|COPYRIGHT|INIT|KEYWORDS|SETUP|TESTED)|
141
+ AM_(?:
142
+ GNU_GETTEXT_(?:VERSION|NEED)|
143
+ ICONV|
144
+ INIT_AUTOMAKE|
145
+ MAINTAINER_MODE|
146
+ PROG_(?:UPC|VALAC)|
147
+ SUBST_NOTMAKE|
148
+ XGETTEXT_OPTION)|
149
+ LT_(?:INIT|LANG|PREREQ)|
150
+ PKG_PROG_PKG_CONFIG|
151
+ IT_PO_SUBDIR|
152
+ GOBJECT_INTROSPECTION_(?:CHECK|REQUIRE)
153
+ </define-regex>
154
+ <define-regex id="macros-s" extended="true">
155
+ AC_CONFIG_COMMANDS_(?:PRE|POST)|
156
+ AS_(?:ECHO(?:_N)?|UNSET)|
157
+ m4_(?:esyscmd(?:_s)?|syscmd)|
158
+ AT_(?:X?FAIL|SKIP)_IF
159
+ </define-regex>
160
+ <define-regex id="macros-mm" extended="true">
161
+ AC_(?:
162
+ ARG_VAR|
163
+ BEFORE|
164
+ CHECK_ALIGNOF|
165
+ CONFIG_TESTDIR|
166
+ DIAGNOSE|
167
+ ERLANG_(?:PATH_ERLC?|SUBST_INSTALL_LIB_SUBDIR)|
168
+ F(?:77|C)_FUNC|
169
+ LANG_(?:CALL|PROGRAM)|
170
+ MSG_(?:ERROR|FAILURE)|
171
+ PROG_FC)|
172
+ AH_(?:TEMPLATE|VERBATIM)|
173
+ AU_ALIAS|
174
+ AS_(?:BOX|ESCAPE|TMPDIR|VAR_(?:APPEND|COPY|PUSHDEF))|
175
+ m4_(?:
176
+ append_uniq_w|
177
+ apply|
178
+ assert|
179
+ change(?:com|quote)|
180
+ (?:list)?cmp|
181
+ (?:copy|rename)(?:_force)?|
182
+ default(?:_nblank)?(?:_quoted)?|
183
+ define(?:_default)?|
184
+ defun|
185
+ divert_(?:once|text)|
186
+ fatal|
187
+ index|
188
+ map(?:all)?|
189
+ pushdef|
190
+ set_(?:contents|difference|dump|intersection|map|union)|
191
+ split|
192
+ stack_foreach(?:_lifo)?|
193
+ text_box|
194
+ version_compare|
195
+ warn)|
196
+ AT_DATA|
197
+ GTK_DOC_CHECK|
198
+ IT_PROG_INTLTOOL
199
+ </define-regex>
200
+ <define-regex id="macros-ms" extended="true">
201
+ AC_(?:CACHE_VAL|DEFUN(?:_ONCE)?|SUBST)|
202
+ AS_(?:INIT_GENERATED|VAR_(?:ARITH|SET))|
203
+ AM_CONDITIONAL
204
+ </define-regex>
205
+ <define-regex id="macros-ss" extended="true">
206
+ AC_(?:F(?:77|C)_DUMMY_MAIN|FC_(?:FREE|FIXED)FORM)
207
+ </define-regex>
208
+ <define-regex id="macros-mmm" extended="true">
209
+ AC_(?:CHECK_SIZEOF|DEFINE(?:_UNQUOTED)?)|
210
+ AS_SET_CATFILE|
211
+ m4_(?:
212
+ append|
213
+ bpatsubst|
214
+ bregexp|
215
+ eval|
216
+ ifn?blank|
217
+ ifn?def|
218
+ ifset|
219
+ ifvaln?|
220
+ map(?:all)?_sep|
221
+ set_(?:empty|foreach)|
222
+ substr|
223
+ translit|
224
+ version-prereq)|
225
+ AM_GNU_GETTEXT
226
+ </define-regex>
227
+ <define-regex id="macros-mms" extended="true">
228
+ AC_CACHE_CHECK|
229
+ m4_foreach(?:_w)?
230
+ </define-regex>
231
+ <define-regex id="macros-msm">AU_DEFUN</define-regex>
232
+ <define-regex id="macros-mss" extended="true">
233
+ AC_(?:
234
+ CHECK_(?:FILE|FUNC)(?:S)?|
235
+ (?:COMPILE|LINK|PREPROC)_IFELSE|
236
+ CONFIG_(?:COMMANDS|FILES|HEADERS|LINKS)|
237
+ ERLANG_CHECK_LIB|
238
+ FC_(?:LINE_LENGTH|SRCEXT))|
239
+ AS_VAR_SET_IF|
240
+ AM_(?:COND_IF|PATH_PYTHON)|
241
+ PKG_CHECK_EXISTS
242
+ </define-regex>
243
+ <define-regex id="macros-mmmm" extended="true">
244
+ AC_(?:
245
+ CHECK_(?:PROGS|(?:TARGET_)?TOOLS?)|
246
+ PATH_(?:PROGS?|(?:TARGET_)?TOOL))|
247
+ AS_HELP_STRING|
248
+ m4_(?:
249
+ map_args_w|
250
+ set_(?:add|contains|map_sep|remove)|
251
+ stack_foreach_sep(?:_lifo)?|
252
+ text|wrap)
253
+ </define-regex>
254
+ <define-regex id="macros-mmms">AC_COMPUTE_INT</define-regex>
255
+ <define-regex id="macros-mmss" extended="true">
256
+ AC_(?:
257
+ ARG_(?:ENABLE|WITH)|
258
+ EGREP_(?:CPP|HEADER))|
259
+ AS_VAR_IF|
260
+ AT_ARG_OPTION(?:_ARG)?|
261
+ PKG_CHECK_MODULES
262
+ </define-regex>
263
+ <define-regex id="macros-mssm" extended="true">
264
+ AC_CHECK_(?:DECL|HEADER|MEMBER|TYPE)(?:S)?
265
+ </define-regex>
266
+ <define-regex id="macros-msss">AC_RUN_IFELSE</define-regex>
267
+ <define-regex id="macros-ssss" extended="true">
268
+ AC_C_BIGENDIAN|
269
+ AS_LITERAL_(?:WORD_)?IF
270
+ </define-regex>
271
+ <define-regex id="macros-mmmmm" extended="true">
272
+ m4_(?:append_uniq|for)|
273
+ AC_INIT
274
+ </define-regex>
275
+ <define-regex id="macros-mmmss">AT_CHECK_EUNIT</define-regex>
276
+ <define-regex id="macros-mmssm" extended="true">
277
+ AC_(?:CHECK_LIB|SEARCH_LIBS|PATH_PROGS_FEATURE_CHECK)
278
+ </define-regex>
279
+ <define-regex id="macros-mmsss">AS_VERSION_COMPARE</define-regex>
280
+ <define-regex id="macros-mmmmmm">AC_CHECK_PROG</define-regex>
281
+ <define-regex id="macros-smmmss">AT_CHECK(?:_UNQUOTED)?</define-regex>
282
+
283
+ <!-- 'mvarargs' and 'svarargs' mean that any number of 'm' or 's' arguments
284
+ are accepted, respectively. These macros will not highlight extraneous
285
+ arguments as errors. -->
286
+ <define-regex id="macros-mvarargs" extended="true">
287
+ m4_(?:
288
+ argn|
289
+ bmatch|
290
+ bpatsubsts|
291
+ car|
292
+ case|
293
+ cdr|
294
+ builtin|
295
+ combine|
296
+ cond|
297
+ count|
298
+ curry|
299
+ do|
300
+ dquote(?:_elt)?|
301
+ dumpdefs?|
302
+ echo|
303
+ errprint|
304
+ format|
305
+ if|
306
+ ignore|
307
+ indir|
308
+ join(?:all)?|
309
+ makelist|
310
+ map_args(?:_(?:pair|sep))?|
311
+ max|
312
+ min|
313
+ (?:un)?quote|
314
+ reverse|
315
+ set_add_all|
316
+ shift(?:2|3|n)?|
317
+ trace(?:off|on)|
318
+ undefine|
319
+ undivert)
320
+ </define-regex>
321
+ <define-regex id="macros-svarargs">AS_IF</define-regex>
322
+
323
+ <!-- At this point, there is one macro left with even more complicated
324
+ argument types: AS_CASE. We treat it specially later on. -->
325
+
326
+ <!-- 'm4-quoted' matches text between quote brackets and highlights it as
327
+ pure M4 (no shell code allowed). -->
328
+ <context id="m4-quoted"><!-- style-ref="test:_yellow"-->
329
+ <start>\[</start>
330
+ <end>\]</end>
331
+ <include>
332
+ <context ref="m4-pure"/>
333
+ </include>
334
+ </context>
335
+
336
+ <!-- 'm4-quoted-shell' matches text between quote brackets and highlights it
337
+ as a mix of M4 and shell code. -->
338
+ <context id="m4-quoted-shell">
339
+ <start>\[</start>
340
+ <end>\]</end>
341
+ <include>
342
+ <context ref="m4"/>
343
+ </include>
344
+ </context>
345
+
346
+ <!-- This context matches text between parentheses that comes after a word,
347
+ and treats it as a variable-length list of 'm' arguments. This is necessary
348
+ for unknown or user-defined macros - without this context, their arguments
349
+ would all be highlighted as shell code. -->
350
+ <context id="m4-function-call"><!-- style-ref="test:_violet"-->
351
+ <start>(?&lt;=[\w\d_])\((?!\))</start>
352
+ <end>\)</end>
353
+ <include>
354
+ <context ref="ARG-M"/>
355
+ <context>
356
+ <start>,</start>
357
+ <end>(?=[,\)])</end>
358
+ <include>
359
+ <context ref="ARG-M"/>
360
+ </include>
361
+ </context>
362
+ </include>
363
+ </context>
364
+
365
+ <!-- M4 'dnl' comments are removed from the output, as opposed to shell '#'
366
+ comments, which appear in the output. -->
367
+ <context id="m4-comment" style-ref="m4-comment" end-at-line-end="true" class="comment" class-disabled="no-spell-check">
368
+ <start>dnl</start>
369
+ <include>
370
+ <context ref="def:in-line-comment"/>
371
+ </include>
372
+ </context>
373
+
374
+ <!-- In the following section, the contexts form a pretty straightforward
375
+ state machine that consumes each macro argument and moves on to the next
376
+ state. -->
377
+
378
+ <!-- This state means all the expected arguments have been consumed, and so
379
+ any remaining arguments are errors. -->
380
+ <context id="NO-ARGS" style-ref="def:error">
381
+ <start>,</start>
382
+ <end>(?=\))</end>
383
+ </context>
384
+
385
+ <!-- This is an argument containing only pure M4. -->
386
+ <context id="ARG-M">
387
+ <include>
388
+ <context ref="m4-pure"/>
389
+ </include>
390
+ </context>
391
+
392
+ <!-- This is an argument containing a mix of M4 and shell code. -->
393
+ <context id="ARG-S">
394
+ <include>
395
+ <context>
396
+ <start>\[</start>
397
+ <end>\]</end>
398
+ <include>
399
+ <context ref="m4"/>
400
+ </include>
401
+ </context>
402
+ <context ref="m4"/>
403
+ </include>
404
+ </context>
405
+
406
+ <!-- The TO-ARGS- states match a comma, and then enter the corresponding
407
+ ARGS- state -->
408
+ <context id="TO-ARGS-M">
409
+ <start>,</start>
410
+ <end>(?=[,\)])</end>
411
+ <include><context ref="ARGS-M"/></include>
412
+ </context>
413
+
414
+ <context id="TO-ARGS-S">
415
+ <start>,</start>
416
+ <end>(?=[,\)])</end>
417
+ <include><context ref="ARGS-S"/></include>
418
+ </context>
419
+
420
+ <context id="TO-ARGS-MM">
421
+ <start>,</start>
422
+ <end>(?=[,\)])</end>
423
+ <include><context ref="ARGS-MM"/></include>
424
+ </context>
425
+
426
+ <context id="TO-ARGS-MS">
427
+ <start>,</start>
428
+ <end>(?=[,\)])</end>
429
+ <include><context ref="ARGS-MS"/></include>
430
+ </context>
431
+
432
+ <context id="TO-ARGS-SM">
433
+ <start>,</start>
434
+ <end>(?=[,\)])</end>
435
+ <include><context ref="ARGS-SM"/></include>
436
+ </context>
437
+
438
+ <context id="TO-ARGS-SS">
439
+ <start>,</start>
440
+ <end>(?=[,\)])</end>
441
+ <include><context ref="ARGS-SS"/></include>
442
+ </context>
443
+
444
+ <context id="TO-ARGS-MMM">
445
+ <start>,</start>
446
+ <end>(?=[,\)])</end>
447
+ <include><context ref="ARGS-MMM"/></include>
448
+ </context>
449
+
450
+ <context id="TO-ARGS-MMS">
451
+ <start>,</start>
452
+ <end>(?=[,\)])</end>
453
+ <include><context ref="ARGS-MMS"/></include>
454
+ </context>
455
+
456
+ <context id="TO-ARGS-MSS">
457
+ <start>,</start>
458
+ <end>(?=[,\)])</end>
459
+ <include><context ref="ARGS-MSS"/></include>
460
+ </context>
461
+
462
+ <context id="TO-ARGS-SSM">
463
+ <start>,</start>
464
+ <end>(?=[,\)])</end>
465
+ <include><context ref="ARGS-SSM"/></include>
466
+ </context>
467
+
468
+ <context id="TO-ARGS-SSS">
469
+ <start>,</start>
470
+ <end>(?=[,\)])</end>
471
+ <include><context ref="ARGS-SSS"/></include>
472
+ </context>
473
+
474
+ <context id="TO-ARGS-MMMM">
475
+ <start>,</start>
476
+ <end>(?=[,\)])</end>
477
+ <include><context ref="ARGS-MMMM"/></include>
478
+ </context>
479
+
480
+ <context id="TO-ARGS-MMSS">
481
+ <start>,</start>
482
+ <end>(?=[,\)])</end>
483
+ <include><context ref="ARGS-MMSS"/></include>
484
+ </context>
485
+
486
+ <context id="TO-ARGS-MSSM">
487
+ <start>,</start>
488
+ <end>(?=[,\)])</end>
489
+ <include><context ref="ARGS-MSSM"/></include>
490
+ </context>
491
+
492
+ <context id="TO-ARGS-MSSS">
493
+ <start>,</start>
494
+ <end>(?=[,\)])</end>
495
+ <include><context ref="ARGS-MSSS"/></include>
496
+ </context>
497
+
498
+ <context id="TO-ARGS-MMMMM">
499
+ <start>,</start>
500
+ <end>(?=[,\)])</end>
501
+ <include><context ref="ARGS-MMMMM"/></include>
502
+ </context>
503
+
504
+ <context id="TO-ARGS-MMMSS">
505
+ <start>,</start>
506
+ <end>(?=[,\)])</end>
507
+ <include><context ref="ARGS-MMMSS"/></include>
508
+ </context>
509
+
510
+ <context id="TO-ARGS-MVARARGS">
511
+ <start>,</start>
512
+ <end>(?=[,\)])</end>
513
+ <include><context ref="ARGS-MVARARGS"/></include>
514
+ </context>
515
+
516
+ <context id="TO-ARGS-SVARARGS">
517
+ <start>,</start>
518
+ <end>(?=[,\)])</end>
519
+ <include><context ref="ARGS-SVARARGS"/></include>
520
+ </context>
521
+
522
+ <!-- The ARGS- states match an argument of the type of the head of the
523
+ argument list, and then enter the TO-ARGS- state corresponding to the
524
+ tail of the argument list. (Or CAR and CDR, if you prefer.) -->
525
+
526
+ <context id="ARGS-S"><include>
527
+ <context ref="ARG-S"/>
528
+ <context ref="NO-ARGS"/>
529
+ </include></context>
530
+
531
+ <context id="ARGS-M"><include>
532
+ <context ref="ARG-M"/>
533
+ <context ref="NO-ARGS"/>
534
+ </include></context>
535
+
536
+ <context id="ARGS-MM"><include>
537
+ <context ref="ARG-M"/>
538
+ <context ref="TO-ARGS-M"/>
539
+ </include></context>
540
+
541
+ <context id="ARGS-MS"><include>
542
+ <context ref="ARG-M"/>
543
+ <context ref="TO-ARGS-S"/>
544
+ </include></context>
545
+
546
+ <context id="ARGS-SM"><include>
547
+ <context ref="ARG-S"/>
548
+ <context ref="TO-ARGS-M"/>
549
+ </include></context>
550
+
551
+ <context id="ARGS-SS"><include>
552
+ <context ref="ARG-S"/>
553
+ <context ref="TO-ARGS-S"/>
554
+ </include></context>
555
+
556
+ <context id="ARGS-MMM"><include>
557
+ <context ref="ARG-M"/>
558
+ <context ref="TO-ARGS-MM"/>
559
+ </include></context>
560
+
561
+ <context id="ARGS-MMS"><include>
562
+ <context ref="ARG-M"/>
563
+ <context ref="TO-ARGS-MS"/>
564
+ </include></context>
565
+
566
+ <context id="ARGS-MSM"><include>
567
+ <context ref="ARG-M"/>
568
+ <context ref="TO-ARGS-SM"/>
569
+ </include></context>
570
+
571
+ <context id="ARGS-MSS"><include>
572
+ <context ref="ARG-M"/>
573
+ <context ref="TO-ARGS-SS"/>
574
+ </include></context>
575
+
576
+ <context id="ARGS-SSM"><include>
577
+ <context ref="ARG-S"/>
578
+ <context ref="TO-ARGS-SM"/>
579
+ </include></context>
580
+
581
+ <context id="ARGS-SSS"><include>
582
+ <context ref="ARG-S"/>
583
+ <context ref="TO-ARGS-SS"/>
584
+ </include></context>
585
+
586
+ <context id="ARGS-MMMM"><include>
587
+ <context ref="ARG-M"/>
588
+ <context ref="TO-ARGS-MMM"/>
589
+ </include></context>
590
+
591
+ <context id="ARGS-MMMS"><include>
592
+ <context ref="ARG-M"/>
593
+ <context ref="TO-ARGS-MMS"/>
594
+ </include></context>
595
+
596
+ <context id="ARGS-MMSS"><include>
597
+ <context ref="ARG-M"/>
598
+ <context ref="TO-ARGS-MSS"/>
599
+ </include></context>
600
+
601
+ <context id="ARGS-MSSM"><include>
602
+ <context ref="ARG-M"/>
603
+ <context ref="TO-ARGS-SSM"/>
604
+ </include></context>
605
+
606
+ <context id="ARGS-MSSS"><include>
607
+ <context ref="ARG-M"/>
608
+ <context ref="TO-ARGS-SSS"/>
609
+ </include></context>
610
+
611
+ <context id="ARGS-SSSS"><include>
612
+ <context ref="ARG-S"/>
613
+ <context ref="TO-ARGS-SSS"/>
614
+ </include></context>
615
+
616
+ <context id="ARGS-MMMMM"><include>
617
+ <context ref="ARG-M"/>
618
+ <context ref="TO-ARGS-MMMM"/>
619
+ </include></context>
620
+
621
+ <context id="ARGS-MMMSS"><include>
622
+ <context ref="ARG-M"/>
623
+ <context ref="TO-ARGS-MMSS"/>
624
+ </include></context>
625
+
626
+ <context id="ARGS-MMSSM"><include>
627
+ <context ref="ARG-M"/>
628
+ <context ref="TO-ARGS-MSSM"/>
629
+ </include></context>
630
+
631
+ <context id="ARGS-MMSSS"><include>
632
+ <context ref="ARG-M"/>
633
+ <context ref="TO-ARGS-MSSS"/>
634
+ </include></context>
635
+
636
+ <context id="ARGS-MMMMMM"><include>
637
+ <context ref="ARG-M"/>
638
+ <context ref="TO-ARGS-MMMMM"/>
639
+ </include></context>
640
+
641
+ <context id="ARGS-SMMMSS"><include>
642
+ <context ref="ARG-S"/>
643
+ <context ref="TO-ARGS-MMMSS"/>
644
+ </include></context>
645
+
646
+ <!-- The ARGS-?VARARGS states go to their own TO-ARGS- states, of course -->
647
+ <context id="ARGS-MVARARGS"><include>
648
+ <context ref="ARG-M"/>
649
+ <context ref="TO-ARGS-MVARARGS"/>
650
+ </include></context>
651
+
652
+ <context id="ARGS-SVARARGS"><include>
653
+ <context ref="ARG-S"/>
654
+ <context ref="TO-ARGS-SVARARGS"/>
655
+ </include></context>
656
+
657
+ <!-- AS_CASE is the odd man out. Its signature should actually be M(MS)+S?,
658
+ i.e. an M followed by one or more pairs of MS, ending with an optional S,
659
+ but there's no way to highlight that properly without knowing whether a
660
+ given argument is the last one. Therefore, we highlight it as M plus
661
+ SVARARGS. -->
662
+ <context id="ARGS-AS-CASE"><include>
663
+ <context ref="ARG-M"/>
664
+ <context ref="TO-ARGS-SVARARGS"/>
665
+ </include></context>
666
+
667
+ <!-- The func- contexts are the ones actually included in the 'm4-pure'
668
+ context below. They match the macro names (which we defined in the regexes
669
+ above), and the opening and closing parentheses, which are all highlighted.
670
+ -->
671
+
672
+ <context id="func-m">
673
+ <start>\b(\%{macros-m})\s*(\()</start>
674
+ <end>\)</end>
675
+ <include>
676
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
677
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
678
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
679
+ <context ref="ARGS-M"/>
680
+ </include>
681
+ </context>
682
+
683
+ <context id="func-s">
684
+ <start>\b(\%{macros-s})\s*(\()</start>
685
+ <end>\)</end>
686
+ <include>
687
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
688
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
689
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
690
+ <context ref="ARGS-S"/>
691
+ </include>
692
+ </context>
693
+
694
+ <context id="func-mm">
695
+ <start>\b(\%{macros-mm})\s*(\()</start>
696
+ <end>\)</end>
697
+ <include>
698
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
699
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
700
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
701
+ <context ref="ARGS-MM"/>
702
+ </include>
703
+ </context>
704
+
705
+ <context id="func-ms">
706
+ <start>\b(\%{macros-ms})\s*(\()</start>
707
+ <end>\)</end>
708
+ <include>
709
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
710
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
711
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
712
+ <context ref="ARGS-MS"/>
713
+ </include>
714
+ </context>
715
+
716
+ <context id="func-ss">
717
+ <start>\b(\%{macros-ss})\s*(\()</start>
718
+ <end>\)</end>
719
+ <include>
720
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
721
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
722
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
723
+ <context ref="ARGS-SS"/>
724
+ </include>
725
+ </context>
726
+
727
+ <context id="func-mmm">
728
+ <start>\b(\%{macros-mmm})\s*(\()</start>
729
+ <end>\)</end>
730
+ <include>
731
+ <context sub-pattern="1" where="start" style-ref="m4-macro"/>
732
+ <context sub-pattern="2" where="start" style-ref="m4-macro"/>
733
+ <context sub-pattern="0" where="end" style-ref="m4-macro"/>
734
+ <context ref="ARGS-MMM"/>
735
+ </include>
736
+ </context>
737
+
738
+ <context id="func-mms">
739
+ <start>\b(\%{macros-mms})\s*(\()</start>
740
+ <end>\)</end>
741
+ <include>
742
+ <context sub-pattern="1" where="start" style-ref="m4-macro"/>
743
+ <context sub-pattern="2" where="start" style-ref="m4-macro"/>
744
+ <context sub-pattern="0" where="end" style-ref="m4-macro"/>
745
+ <context ref="ARGS-MMS"/>
746
+ </include>
747
+ </context>
748
+
749
+ <context id="func-msm">
750
+ <start>\b(\%{macros-msm})\s*(\()</start>
751
+ <end>\)</end>
752
+ <include>
753
+ <context sub-pattern="1" where="start" style-ref="m4-macro"/>
754
+ <context sub-pattern="2" where="start" style-ref="m4-macro"/>
755
+ <context sub-pattern="0" where="end" style-ref="m4-macro"/>
756
+ <context ref="ARGS-MSM"/>
757
+ </include>
758
+ </context>
759
+
760
+ <context id="func-mss">
761
+ <start>\b(\%{macros-mss})\s*(\()</start>
762
+ <end>\)</end>
763
+ <include>
764
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
765
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
766
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
767
+ <context ref="ARGS-MSS"/>
768
+ </include>
769
+ </context>
770
+
771
+ <context id="func-mmmm">
772
+ <start>\b(\%{macros-mmmm})\s*(\()</start>
773
+ <end>\)</end>
774
+ <include>
775
+ <context sub-pattern="1" where="start" style-ref="m4-macro"/>
776
+ <context sub-pattern="2" where="start" style-ref="m4-macro"/>
777
+ <context sub-pattern="0" where="end" style-ref="m4-macro"/>
778
+ <context ref="ARGS-MMMM"/>
779
+ </include>
780
+ </context>
781
+
782
+ <context id="func-mmms">
783
+ <start>\b(\%{macros-mmms})\s*(\()</start>
784
+ <end>\)</end>
785
+ <include>
786
+ <context sub-pattern="1" where="start" style-ref="m4-macro"/>
787
+ <context sub-pattern="2" where="start" style-ref="m4-macro"/>
788
+ <context sub-pattern="0" where="end" style-ref="m4-macro"/>
789
+ <context ref="ARGS-MMMS"/>
790
+ </include>
791
+ </context>
792
+
793
+ <context id="func-mmss">
794
+ <start>\b(\%{macros-mmss})\s*(\()</start>
795
+ <end>\)</end>
796
+ <include>
797
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
798
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
799
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
800
+ <context ref="ARGS-MMSS"/>
801
+ </include>
802
+ </context>
803
+
804
+ <context id="func-mssm">
805
+ <start>\b(\%{macros-mssm})\s*(\()</start>
806
+ <end>\)</end>
807
+ <include>
808
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
809
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
810
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
811
+ <context ref="ARGS-MSSM"/>
812
+ </include>
813
+ </context>
814
+
815
+ <context id="func-msss">
816
+ <start>\b(\%{macros-msss})\s*(\()</start>
817
+ <end>\)</end>
818
+ <include>
819
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
820
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
821
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
822
+ <context ref="ARGS-MSSS"/>
823
+ </include>
824
+ </context>
825
+
826
+ <context id="func-ssss">
827
+ <start>\b(\%{macros-ssss})\s*(\()</start>
828
+ <end>\)</end>
829
+ <include>
830
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
831
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
832
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
833
+ <context ref="ARGS-SSSS"/>
834
+ </include>
835
+ </context>
836
+
837
+ <context id="func-mmmmm">
838
+ <start>\b(\%{macros-mmmmm})\s*(\()</start>
839
+ <end>\)</end>
840
+ <include>
841
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
842
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
843
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
844
+ <context ref="ARGS-MMMMM"/>
845
+ </include>
846
+ </context>
847
+
848
+ <context id="func-mmmss">
849
+ <start>\b(\%{macros-mmmss})\s*(\()</start>
850
+ <end>\)</end>
851
+ <include>
852
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
853
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
854
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
855
+ <context ref="ARGS-MMMSS"/>
856
+ </include>
857
+ </context>
858
+
859
+ <context id="func-mmssm">
860
+ <start>\b(\%{macros-mmssm})\s*(\()</start>
861
+ <end>\)</end>
862
+ <include>
863
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
864
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
865
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
866
+ <context ref="ARGS-MMSSM"/>
867
+ </include>
868
+ </context>
869
+
870
+ <context id="func-mmsss">
871
+ <start>\b(\%{macros-mmsss})\s*(\()</start>
872
+ <end>\)</end>
873
+ <include>
874
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
875
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
876
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
877
+ <context ref="ARGS-MMSSS"/>
878
+ </include>
879
+ </context>
880
+
881
+ <context id="func-mmmmmm">
882
+ <start>\b(\%{macros-mmmmmm})\s*(\()</start>
883
+ <end>\)</end>
884
+ <include>
885
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
886
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
887
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
888
+ <context ref="ARGS-MMMMMM"/>
889
+ </include>
890
+ </context>
891
+
892
+ <context id="func-smmmss">
893
+ <start>\b(\%{macros-smmmss})\s*(\()</start>
894
+ <end>\)</end>
895
+ <include>
896
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
897
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
898
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
899
+ <context ref="ARGS-SMMMSS"/>
900
+ </include>
901
+ </context>
902
+
903
+ <context id="func-mvarargs">
904
+ <start>\b(\%{macros-mvarargs})\s*(\()</start>
905
+ <end>\)</end>
906
+ <include>
907
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
908
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
909
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
910
+ <context ref="ARGS-MVARARGS"/>
911
+ </include>
912
+ </context>
913
+
914
+ <context id="func-svarargs">
915
+ <start>\b(\%{macros-svarargs})\s*(\()</start>
916
+ <end>\)</end>
917
+ <include>
918
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
919
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
920
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
921
+ <context ref="ARGS-SVARARGS"/>
922
+ </include>
923
+ </context>
924
+
925
+ <context id="func-as-case">
926
+ <start>\b(AS_CASE)\s*(\()</start>
927
+ <end>\)</end>
928
+ <include>
929
+ <context sub-pattern="1" where="start" style-ref="ac-macro"/>
930
+ <context sub-pattern="2" where="start" style-ref="ac-macro"/>
931
+ <context sub-pattern="0" where="end" style-ref="ac-macro"/>
932
+ <context ref="ARGS-AS-CASE"/>
933
+ </include>
934
+ </context>
935
+
936
+ <!-- This context highlights pure M4 code. -->
937
+ <context id="m4-pure">
938
+ <include>
939
+ <context ref="m4-comment"/>
940
+ <context ref="func-m"/>
941
+ <context ref="func-s"/>
942
+ <context ref="func-mm"/>
943
+ <context ref="func-ms"/>
944
+ <context ref="func-ss"/>
945
+ <context ref="func-mmm"/>
946
+ <context ref="func-mms"/>
947
+ <context ref="func-msm"/>
948
+ <context ref="func-mss"/>
949
+ <context ref="func-mmmm"/>
950
+ <context ref="func-mmms"/>
951
+ <context ref="func-mmss"/>
952
+ <context ref="func-mssm"/>
953
+ <context ref="func-msss"/>
954
+ <context ref="func-ssss"/>
955
+ <context ref="func-mmmmm"/>
956
+ <context ref="func-mmmss"/>
957
+ <context ref="func-mmssm"/>
958
+ <context ref="func-mmsss"/>
959
+ <context ref="func-mmmmmm"/>
960
+ <context ref="func-smmmss"/>
961
+ <context ref="func-mvarargs"/>
962
+ <context ref="func-svarargs"/>
963
+ <context ref="func-as-case"/>
964
+ <context ref="m4-macros-noargs"/>
965
+ <context ref="ac-macros-noargs"/>
966
+ <context ref="ac-macros-noargs-2"/>
967
+ <context ref="ac-macros-optargs"/>
968
+ <context ref="ac-macros-obsolete"/>
969
+ <context ref="am-macros-noargs"/>
970
+ <context ref="am-macros-optargs"/>
971
+ <context ref="am-macros-obsolete"/>
972
+ <context ref="am-macros-private"/>
973
+ <context ref="misc-macros-noargs"/>
974
+ <context ref="misc-macros-optargs"/>
975
+ <context ref="m4-function-call"/>
976
+ <context ref="m4-quoted"/>
977
+ <context extend-parent="false" style-ref="def:error">
978
+ <match>\]</match>
979
+ </context>
980
+ </include>
981
+ </context>
982
+
983
+ <context id="shell-line-comment" style-ref="sh:comment" end-at-line-end="true" class="comment" class-disabled="no-spell-check">
984
+ <start>(?&lt;!\S)#|(?&lt;=\[)#</start>
985
+ <include>
986
+ <context ref="sh:line-comment" original="true"/>
987
+ </include>
988
+ </context>
989
+
990
+ <replace id="sh:sh" ref="m4"/>
991
+ <replace id="sh:line-comment" ref="shell-line-comment"/>
992
+
993
+ <!-- This is the main 'm4' context. It highlights a mixture of M4 and shell
994
+ code. -->
995
+ <context id="m4" class="no-spell-check">
996
+ <include>
997
+ <context ref="m4-quoted-shell"/>
998
+ <context ref="m4-pure"/>
999
+ <context ref="sh:sh" original="true"/>
1000
+ <context id="bad-paren" extend-parent="false" style-ref="def:error">
1001
+ <match>\)</match>
1002
+ </context>
1003
+ </include>
1004
+ </context>
1005
+
1006
+ <!-- Now come the macros that don't take any arguments. They are not called
1007
+ with empty parentheses, just with the macro name: e.g. AC_OUTPUT. We can
1008
+ simply use keyword contexts for them. -->
1009
+
1010
+ <context id="m4-macros-noargs" style-ref="m4-macro">
1011
+ <prefix>\bm4_</prefix>
1012
+ <keyword>divnum</keyword>
1013
+ <keyword>init</keyword>
1014
+ <keyword>location</keyword>
1015
+ <keyword>sysval</keyword>
1016
+ </context>
1017
+
1018
+ <!-- We also have keyword contexts for macros that do take arguments, but
1019
+ can also be called without any; for example, AC_PROG_CC takes a list of
1020
+ compiler names to search for, but is mostly just called without it. Since
1021
+ the 'func-m' context would only match AC_PROG_CC(), we repeat this kind of
1022
+ macros in '-optargs' contexts. -->
1023
+
1024
+ <context id="m4-macros-optargs" style-ref="m4-macro">
1025
+ <prefix>\bm4_</prefix>
1026
+ <keyword>change(com|quote)</keyword>
1027
+ <keyword>debug(file|mode)</keyword>
1028
+ <keyword>divert_pop</keyword>
1029
+ <keyword>newline</keyword>
1030
+ <keyword>trace(on|off)</keyword>
1031
+ </context>
1032
+
1033
+ <context id="ac-macros-noargs" style-ref="ac-macro">
1034
+ <prefix>\bAC_</prefix>
1035
+ <keyword>ARG_PROGRAM</keyword>
1036
+ <keyword>AUTOCONF_VERSION</keyword>
1037
+ <keyword>C_BACKSLASH_A</keyword>
1038
+ <keyword>CACHE_(LOAD|SAVE)</keyword>
1039
+ <keyword>CANONICAL_(BUILD|HOST|TARGET)</keyword>
1040
+ <keyword>C_CHAR_UNSIGNED</keyword>
1041
+ <keyword>C_CONST</keyword>
1042
+ <keyword>C_FLEXIBLE_ARRAY_MEMBER</keyword>
1043
+ <keyword>C_INLINE</keyword>
1044
+ <keyword>C_PROTOTYPES</keyword>
1045
+ <keyword>C_RESTRICT</keyword>
1046
+ <keyword>C_STRINGIZE</keyword>
1047
+ <keyword>C_TYPEOF</keyword>
1048
+ <keyword>C_VARARRAYS</keyword>
1049
+ <keyword>C_VOLATILE</keyword>
1050
+ <keyword>DISABLE_OPTION_CHECKING</keyword>
1051
+ <keyword>ERLANG_SUBST_(((INSTALL_)?LIB|ROOT)_DIR|ERTS_VER)</keyword>
1052
+ <keyword>F77_MAIN</keyword>
1053
+ <keyword>F77_WRAPPERS</keyword>
1054
+ <keyword>FC_MAIN</keyword>
1055
+ <keyword>FC_WRAPPERS</keyword>
1056
+ <keyword>FUNC_ALLOCA</keyword>
1057
+ <keyword>FUNC_CHOWN</keyword>
1058
+ <keyword>FUNC_CLOSEDIR_VOID</keyword>
1059
+ <keyword>FUNC_ERROR_AT_LINE</keyword>
1060
+ <keyword>FUNC_FNMATCH(_GNU)?</keyword>
1061
+ <keyword>FUNC_FORK</keyword>
1062
+ <keyword>FUNC_FSEEKO</keyword>
1063
+ <keyword>FUNC_GETGROUPS</keyword>
1064
+ <keyword>FUNC_GETLOADAVG</keyword>
1065
+ <keyword>FUNC_GETMNTENT</keyword>
1066
+ <keyword>FUNC_GETPGRP</keyword>
1067
+ <keyword>FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK</keyword>
1068
+ <keyword>FUNC_LSTAT</keyword>
1069
+ <keyword>FUNC_MALLOC</keyword>
1070
+ <keyword>FUNC_MBRTOWC</keyword>
1071
+ <keyword>FUNC_MEMCMP</keyword>
1072
+ <keyword>FUNC_MKTIME</keyword>
1073
+ <keyword>FUNC_MMAP</keyword>
1074
+ <keyword>FUNC_OBSTACK</keyword>
1075
+ <keyword>FUNC_REALLOC</keyword>
1076
+ <keyword>FUNC_SELECT_ARGTYPES</keyword>
1077
+ <keyword>FUNC_SETPGRP</keyword>
1078
+ <keyword>FUNC_STAT</keyword>
1079
+ <keyword>FUNC_STRCOLL</keyword>
1080
+ <keyword>FUNC_STRERROR_R</keyword>
1081
+ <keyword>FUNC_STRFTIME</keyword>
1082
+ <keyword>FUNC_STRNLEN</keyword>
1083
+ <keyword>FUNC_STRTOD</keyword>
1084
+ <keyword>FUNC_STRTOLD</keyword>
1085
+ <keyword>FUNC_UTIME_NULL</keyword>
1086
+ <keyword>FUNC_VPRINTF</keyword>
1087
+ <keyword>HEADER_ASSERT</keyword>
1088
+ <keyword>HEADER_DIRENT</keyword>
1089
+ <keyword>HEADER_MAJOR</keyword>
1090
+ <keyword>HEADER_RESOLV</keyword>
1091
+ <keyword>HEADER_STAT</keyword>
1092
+ <keyword>HEADER_STDBOOL</keyword>
1093
+ <keyword>HEADER_STDC</keyword>
1094
+ <keyword>HEADER_SYS_WAIT</keyword>
1095
+ <keyword>HEADER_TIME</keyword>
1096
+ <keyword>HEADER_TIOCGWINSZ</keyword>
1097
+ <keyword>LANG_DEFINES_PROVIDED</keyword>
1098
+ <keyword>LANG_WERROR</keyword>
1099
+ <keyword>OUTPUT</keyword>
1100
+ <keyword>PACKAGE_BUGREPORT</keyword>
1101
+ <keyword>PACKAGE_NAME</keyword>
1102
+ <keyword>PACKAGE_STRING</keyword>
1103
+ <keyword>PACKAGE_TARNAME</keyword>
1104
+ <keyword>PACKAGE_URL</keyword>
1105
+ <keyword>PACKAGE_VERSION</keyword>
1106
+ <keyword>PATH_X</keyword>
1107
+ <keyword>PATH_XTRA</keyword>
1108
+ <keyword>PRESERVE_HELP_ORDER</keyword>
1109
+ <keyword>PROG_AWK</keyword>
1110
+ <keyword>PROG_CC(_C(89|99|_O))</keyword>
1111
+ <keyword>PROG_CC_STDC</keyword>
1112
+ <keyword>PROG_CPP(_WERROR)?</keyword>
1113
+ <keyword>PROG_CXX(CPP|_C_O)?</keyword>
1114
+ <keyword>PROG_EGREP</keyword>
1115
+ <keyword>PROG_F77_C_O</keyword>
1116
+ <keyword>PROG_FC_C_O</keyword>
1117
+ <keyword>PROG_FGREP</keyword>
1118
+ <keyword>PROG_GCC_TRADITIONAL</keyword>
1119
+ <keyword>PROG_GREP</keyword>
1120
+ <keyword>PROG_INSTALL</keyword>
1121
+ <keyword>PROG_LEX</keyword>
1122
+ <keyword>PROG_LN_S</keyword>
1123
+ <keyword>PROG_MAKE_SET</keyword>
1124
+ <keyword>PROG_MKDIR_P</keyword>
1125
+ <keyword>PROG_OBJ(CXX)?CPP</keyword>
1126
+ <keyword>PROG_RANLIB</keyword>
1127
+ <keyword>PROG_SED</keyword>
1128
+ <keyword>PROG_YACC</keyword>
1129
+ <keyword>REPLACE_FNMATCH</keyword>
1130
+ <keyword>REQUIRE_CPP</keyword>
1131
+ <keyword>STRUCT_DIRENT_D_(INO|TYPE)</keyword>
1132
+ <keyword>STRUCT_ST_BLOCKS</keyword>
1133
+ <keyword>STRUCT_TIMEZONE</keyword>
1134
+ <keyword>STRUCT_TM</keyword>
1135
+ <keyword>SYS_INTERPRETER</keyword>
1136
+ <keyword>SYS_LARGEFILE</keyword>
1137
+ <keyword>SYS_LONG_FILE_NAMES</keyword>
1138
+ <keyword>SYS_POSIX_TERMIOS</keyword>
1139
+ <keyword>TYPE_GETGROUPS</keyword>
1140
+ <keyword>TYPE_INT(16_T|32_T|64_T|8_T)</keyword>
1141
+ <keyword>TYPE_INTMAX_T</keyword>
1142
+ <keyword>TYPE_INTPTR_T</keyword>
1143
+ <keyword>TYPE_LONG_DOUBLE(_WIDER)?</keyword>
1144
+ <keyword>TYPE_LONG_LONG_INT</keyword>
1145
+ <keyword>TYPE_MBSTATE_T</keyword>
1146
+ <keyword>TYPE_MODE_T</keyword>
1147
+ <keyword>TYPE_OFF_T</keyword>
1148
+ <keyword>TYPE_PID_T</keyword>
1149
+ <keyword>TYPE_SIGNAL</keyword>
1150
+ <keyword>TYPE_SIZE_T</keyword>
1151
+ <keyword>TYPE_SSIZE_T</keyword>
1152
+ <keyword>TYPE_UID_T</keyword>
1153
+ <keyword>TYPE_UINT(16_T|32_T|64_T|8_T)</keyword>
1154
+ <keyword>TYPE_UINTMAX_T</keyword>
1155
+ <keyword>TYPE_UINTPTR_T</keyword>
1156
+ <keyword>TYPE_UNSIGNED_LONG_LONG_INT</keyword>
1157
+ <keyword>USE_SYSTEM_EXTENSIONS</keyword>
1158
+ </context>
1159
+
1160
+ <context id="ac-macros-noargs-2" style-ref="ac-macro">
1161
+ <prefix>\b</prefix>
1162
+ <keyword>AH_HEADER</keyword>
1163
+ <keyword>AS_BOURNE_COMPATIBLE</keyword>
1164
+ <keyword>AS_INIT</keyword>
1165
+ <keyword>AS_LINENO_PREPARE</keyword>
1166
+ <keyword>AS_ME_PREPARE</keyword>
1167
+ <keyword>AS_MESSAGE_FD</keyword>
1168
+ <keyword>AS_MESSAGE_LOG_FD</keyword>
1169
+ <keyword>AS_ORIGINAL_STDIN_FD</keyword>
1170
+ <keyword>AS_SHELL_SANITIZE</keyword>
1171
+ <keyword>AT_CLEANUP</keyword>
1172
+ <keyword>AT_COLOR_TESTS</keyword>
1173
+ </context>
1174
+
1175
+ <context id="ac-macros-optargs" style-ref="ac-macro">
1176
+ <prefix>\b</prefix>
1177
+ <keyword>AC_C_BIGENDIAN</keyword>
1178
+ <keyword>AC_ERLANG_(PATH|NEED)_ERLC?</keyword>
1179
+ <keyword>AC_F(77|C)_DUMMY_MAIN</keyword>
1180
+ <keyword>AC_FC_((FIXED|FREE)FORM|LINE_LENGTH)</keyword>
1181
+ <keyword>AC_INCLUDES_DEFAULT</keyword>
1182
+ <keyword>AC_LANG_POP</keyword>
1183
+ <keyword>AC_PROG_(CC|CXX|OBJC(XX)?|F(77|C))</keyword>
1184
+ <keyword>AS_EXIT</keyword>
1185
+ <keyword>AT_INIT</keyword>
1186
+ </context>
1187
+
1188
+ <!-- Deprecated macros are highlighted as errors. We don't bother
1189
+ highlighting their arguments properly, because they're deprecated anyway!-->
1190
+
1191
+ <context id="ac-macros-obsolete" style-ref="ac-macro-obsolete">
1192
+ <prefix>\bAC_</prefix>
1193
+ <keyword>AIX</keyword>
1194
+ <keyword>ALLOCA</keyword>
1195
+ <keyword>ARG_ARRAY</keyword>
1196
+ <keyword>CANONICAL_SYSTEM</keyword>
1197
+ <keyword>C_CROSS</keyword>
1198
+ <keyword>CHAR_UNSIGNED</keyword>
1199
+ <keyword>CHECKING</keyword>
1200
+ <keyword>C_LONG_DOUBLE</keyword>
1201
+ <keyword>COMPILE_CHECK</keyword>
1202
+ <keyword>CONFIG_HEADER</keyword>
1203
+ <keyword>CONST</keyword>
1204
+ <keyword>CROSS_CHECK</keyword>
1205
+ <keyword>CYGWIN</keyword>
1206
+ <keyword>DECL_SYS_SIGLIST</keyword>
1207
+ <keyword>DECL_YYTEXT</keyword>
1208
+ <keyword>DIR_HEADER</keyword>
1209
+ <keyword>DISABLE_FAST_INSTALL</keyword>
1210
+ <keyword>DISABLE_SHARED</keyword>
1211
+ <keyword>DISABLE_STATIC</keyword>
1212
+ <keyword>DYNIX_SEQ</keyword>
1213
+ <keyword>ENABLE(_(SHARED|STATIC))?</keyword>
1214
+ <keyword>EMXOS2</keyword>
1215
+ <keyword>ERROR</keyword>
1216
+ <keyword>EXEEXT</keyword>
1217
+ <keyword>FIND_X</keyword>
1218
+ <keyword>FIND_XTRA</keyword>
1219
+ <keyword>FOREACH</keyword>
1220
+ <keyword>FUNC_CHECK</keyword>
1221
+ <keyword>FUNC_SETVBUF_REVERSED</keyword>
1222
+ <keyword>FUNC_WAIT3</keyword>
1223
+ <keyword>GCC_TRADITIONAL</keyword>
1224
+ <keyword>GETGROUPS_T</keyword>
1225
+ <keyword>GETLOADAVG</keyword>
1226
+ <keyword>GNU_SOURCE</keyword>
1227
+ <keyword>HAVE_FUNCS</keyword>
1228
+ <keyword>HAVE_HEADERS</keyword>
1229
+ <keyword>HAVE_LIBRARY</keyword>
1230
+ <keyword>HAVE_POUNDBANG</keyword>
1231
+ <keyword>HEADER_CHECK</keyword>
1232
+ <keyword>HEADER_EGREP</keyword>
1233
+ <keyword>HELP_STRING</keyword>
1234
+ <keyword>INLINE</keyword>
1235
+ <keyword>INT_16_BITS</keyword>
1236
+ <keyword>IRIX_SUN</keyword>
1237
+ <keyword>LANG_C</keyword>
1238
+ <keyword>LANG_CPLUSPLUS</keyword>
1239
+ <keyword>LANG_FORTRAN77</keyword>
1240
+ <keyword>LANG_RESTORE</keyword>
1241
+ <keyword>LANG_SAVE</keyword>
1242
+ <keyword>LIBTOOL_DLOPEN</keyword>
1243
+ <keyword>LIBTOOL_WIN32_DLL</keyword>
1244
+ <keyword>LINK_FILES</keyword>
1245
+ <keyword>LN_S</keyword>
1246
+ <keyword>LONG_64_BITS</keyword>
1247
+ <keyword>LONG_DOUBLE</keyword>
1248
+ <keyword>LONG_FILE_NAMES</keyword>
1249
+ <keyword>MAJOR_HEADER</keyword>
1250
+ <keyword>MEMORY_H</keyword>
1251
+ <keyword>MINGW32</keyword>
1252
+ <keyword>MINIX</keyword>
1253
+ <keyword>MINUS_C_MINUS_O</keyword>
1254
+ <keyword>MMAP</keyword>
1255
+ <keyword>MODE_T</keyword>
1256
+ <keyword>OBJEXT</keyword>
1257
+ <keyword>OBSOLETE</keyword>
1258
+ <keyword>OFF_T</keyword>
1259
+ <keyword>OUTPUT_COMMANDS</keyword>
1260
+ <keyword>PID_T</keyword>
1261
+ <keyword>PREFIX</keyword>
1262
+ <keyword>PROG_(INTL|LIB)TOOL</keyword>
1263
+ <keyword>PROGRAM_CHECK</keyword>
1264
+ <keyword>PROGRAM_EGREP</keyword>
1265
+ <keyword>PROGRAM_PATH</keyword>
1266
+ <keyword>PROGRAMS_CHECK</keyword>
1267
+ <keyword>PROGRAMS_PATH</keyword>
1268
+ <keyword>REMOTE_TAPE</keyword>
1269
+ <keyword>RESTARTABLE_SYSCALLS</keyword>
1270
+ <keyword>RETSIGTYPE</keyword>
1271
+ <keyword>RSH</keyword>
1272
+ <keyword>SCO_INTL</keyword>
1273
+ <keyword>SET_MAKE</keyword>
1274
+ <keyword>SETVBUF_REVERSED</keyword>
1275
+ <keyword>SIZEOF_TYPE</keyword>
1276
+ <keyword>SIZE_T</keyword>
1277
+ <keyword>STAT_MACROS_BROKEN</keyword>
1278
+ <keyword>ST_BLKSIZE</keyword>
1279
+ <keyword>ST_BLOCKS</keyword>
1280
+ <keyword>STDC_HEADERS</keyword>
1281
+ <keyword>STRCOLL</keyword>
1282
+ <keyword>ST_RDEV</keyword>
1283
+ <keyword>SYS_RESTARTABLE_SYSCALLS</keyword>
1284
+ <keyword>SYS_SIGLIST_DECLARED</keyword>
1285
+ <keyword>TEST_CPP</keyword>
1286
+ <keyword>TEST_PROGRAM</keyword>
1287
+ <keyword>TIME_WITH_SYS_TIME</keyword>
1288
+ <keyword>TIMEZONE</keyword>
1289
+ <keyword>TRY_COMPILE</keyword>
1290
+ <keyword>TRY_CPP</keyword>
1291
+ <keyword>TRY_LINK_FUNC</keyword>
1292
+ <keyword>TRY_LINK</keyword>
1293
+ <keyword>TRY_RUN</keyword>
1294
+ <keyword>UID_T</keyword>
1295
+ <keyword>UNISTD_H</keyword>
1296
+ <keyword>USG</keyword>
1297
+ <keyword>UTIME_NULL</keyword>
1298
+ <keyword>VALIDATE_CACHED_SYSTEM_TUPLE</keyword>
1299
+ <keyword>VERBOSE</keyword>
1300
+ <keyword>VFORK</keyword>
1301
+ <keyword>VPRINTF</keyword>
1302
+ <keyword>WAIT3</keyword>
1303
+ <keyword>WARN</keyword>
1304
+ <keyword>WITH</keyword>
1305
+ <keyword>WORDS_BIGENDIAN</keyword>
1306
+ <keyword>XENIX_DIR</keyword>
1307
+ <keyword>YYTEXT_POINTER</keyword>
1308
+ </context>
1309
+
1310
+ <context id="am-macros-noargs" style-ref="ac-macro">
1311
+ <prefix>\bAM_</prefix>
1312
+ <keyword>ENABLE_MULTILIB</keyword>
1313
+ <keyword>GCONF_SOURCE_2</keyword>
1314
+ <keyword>GLIB_GNU_GETTEXT</keyword>
1315
+ <keyword>GNU_GETTEXT_INTL_SUBDIR</keyword>
1316
+ <keyword>PATH_LISPDIR</keyword>
1317
+ <keyword>PO_SUBDIRS</keyword>
1318
+ <keyword>PROG_AS</keyword>
1319
+ <keyword>PROG_CC_C_O</keyword>
1320
+ <keyword>PROG_GCJ</keyword>
1321
+ <keyword>PROG_LEX</keyword>
1322
+ <keyword>SILENT_RULES</keyword>
1323
+ <keyword>WITH_DMALLOC</keyword>
1324
+ <keyword>WITH_REGEX</keyword>
1325
+ </context>
1326
+
1327
+ <context id="am-macros-optargs" style-ref="ac-macro">
1328
+ <prefix>\bAM_</prefix>
1329
+ <keyword>INIT_AUTOMAKE</keyword>
1330
+ <keyword>MAINTAINER_MODE</keyword>
1331
+ <keyword>PATH_PYTHON</keyword>
1332
+ <keyword>PROG_(UPC|VALAC)</keyword>
1333
+ </context>
1334
+
1335
+ <context id="am-macros-private" style-ref="ac-macro-obsolete">
1336
+ <prefix>\bAM_</prefix>
1337
+ <keyword>DEP_TRACK</keyword>
1338
+ <keyword>MAKE_INCLUDE</keyword>
1339
+ <keyword>OUTPUT_DEPENDENCY_COMMANDS</keyword>
1340
+ <keyword>PROG_INSTALL_STRIP</keyword>
1341
+ <keyword>SANITY_CHECK</keyword>
1342
+ <keyword>SET_DEPDIR</keyword>
1343
+ </context>
1344
+
1345
+ <context id="am-macros-obsolete" style-ref="ac-macro-obsolete">
1346
+ <prefix>\bAM_</prefix>
1347
+ <keyword>C_PROTOTYPES</keyword>
1348
+ <keyword>CONFIG_HEADER</keyword>
1349
+ <keyword>HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL</keyword>
1350
+ <keyword>PATH_CHECK</keyword>
1351
+ <keyword>PROG_(LIBTOOL|MKDIR_P)</keyword>
1352
+ <keyword>SYS_POSIX_TERMIOS</keyword>
1353
+ <keyword>(DIS|EN)ABLE_(STATIC|SHARED)</keyword>
1354
+ </context>
1355
+
1356
+ <context id="misc-macros-noargs" style-ref="ac-macro">
1357
+ <prefix>\b</prefix>
1358
+ <keyword>__(file|o?line)__</keyword>
1359
+ <keyword>LT_CMD_MAX_LEN</keyword>
1360
+ <keyword>LT_FUNC_DLSYM_USCORE</keyword>
1361
+ <keyword>LT_LIB_(M|DLLOAD)</keyword>
1362
+ <keyword>LT_OUTPUT</keyword>
1363
+ <keyword>LT_PATH_(LD|NM)</keyword>
1364
+ <keyword>LT_SYS_DLOPEN_(SELF|DEPLIBS)</keyword>
1365
+ <keyword>LT_SYS_MODULE_(EXT|PATH)</keyword>
1366
+ <keyword>LT_SYS_(DLSEARCH_PATH|SYMBOL_USCORE)</keyword>
1367
+ </context>
1368
+
1369
+ <context id="misc-macros-optargs" style-ref="ac-macro">
1370
+ <prefix>\b</prefix>
1371
+ <keyword>LT_INIT</keyword>
1372
+ <keyword>PKG_PROG_PKG_CONFIG</keyword>
1373
+ </context>
1374
+ </definitions>
1375
+ </language>