gtksourceview3 2.2.4-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (334) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +59 -0
  3. data/ext/gtksourceview3/depend +6 -0
  4. data/ext/gtksourceview3/extconf.rb +67 -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 +40 -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 +50 -0
  23. data/ext/gtksourceview3/rbgtksourceview3private.h +53 -0
  24. data/extconf.rb +49 -0
  25. data/lib/2.0/gtksourceview3.so +0 -0
  26. data/lib/2.1/gtksourceview3.so +0 -0
  27. data/lib/2.2/gtksourceview3.so +0 -0
  28. data/lib/gtksourceview3.rb +20 -0
  29. data/lib/gtksourceview3/deprecated.rb +47 -0
  30. data/sample/sourcelanguagemanager.rb +21 -0
  31. data/sample/test.rb +32 -0
  32. data/test/run-test.rb +44 -0
  33. data/test/test_mark_attributes.rb +26 -0
  34. data/test/test_source_gutter_renderer.rb +33 -0
  35. data/test/test_source_language_manager.rb +46 -0
  36. data/test/test_source_view.rb +57 -0
  37. data/vendor/local/bin/libgtksourceview-3.0-1.dll +0 -0
  38. data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +65 -0
  39. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +54 -0
  40. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +213 -0
  41. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +142 -0
  42. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +95 -0
  43. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +78 -0
  44. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +70 -0
  45. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +97 -0
  46. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +137 -0
  47. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceencoding.h +54 -0
  48. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefile.h +115 -0
  49. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefileloader.h +122 -0
  50. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefilesaver.h +147 -0
  51. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
  52. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +229 -0
  53. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +87 -0
  54. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
  55. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +85 -0
  56. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +84 -0
  57. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
  58. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +100 -0
  59. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +175 -0
  60. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchcontext.h +133 -0
  61. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchsettings.h +85 -0
  62. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +45 -0
  63. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +109 -0
  64. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +86 -0
  65. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +101 -0
  66. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +75 -0
  67. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceutils.h +34 -0
  68. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +88 -0
  69. data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +213 -0
  70. data/vendor/local/lib/girepository-1.0/GtkSource-3.0.typelib +0 -0
  71. data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
  72. data/vendor/local/lib/libgtksourceview-3.0.la +41 -0
  73. data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  74. data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  75. data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  76. data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  77. data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  78. data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  79. data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  80. data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  81. data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  82. data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  83. data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  84. data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  85. data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  86. data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  87. data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  88. data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  89. data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  90. data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  91. data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  92. data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  93. data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  94. data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  95. data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  96. data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  97. data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  98. data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  99. data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  100. data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  101. data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  102. data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  103. data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  104. data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  105. data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  106. data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  107. data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  108. data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  109. data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  110. data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  111. data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  112. data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  113. data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  114. data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  115. data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  116. data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  117. data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  118. data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  119. data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  120. data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  121. data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  122. data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  123. data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  124. data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  125. data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  126. data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  127. data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  128. data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  129. data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  130. data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  131. data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  132. data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  133. data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  134. data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  135. data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  136. data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  137. data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  138. data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  139. data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  140. data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  141. data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  142. data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  143. data/vendor/local/lib/locale/tg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  144. data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  145. data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  146. data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  147. data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  148. data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  149. data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  150. data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  151. data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  152. data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
  153. data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +12 -0
  154. data/vendor/local/share/gir-1.0/GtkSource-3.0.gir +11360 -0
  155. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +2143 -0
  156. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +1129 -0
  157. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +397 -0
  158. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +348 -0
  159. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +367 -0
  160. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +572 -0
  161. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +750 -0
  162. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionWords.html +345 -0
  163. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceEncoding.html +366 -0
  164. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFile.html +563 -0
  165. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileLoader.html +769 -0
  166. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileSaver.html +962 -0
  167. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +490 -0
  168. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRenderer.html +1700 -0
  169. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html +468 -0
  170. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererText.html +228 -0
  171. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +584 -0
  172. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +476 -0
  173. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +310 -0
  174. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +897 -0
  175. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +2149 -0
  176. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchContext.html +1116 -0
  177. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchSettings.html +606 -0
  178. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +358 -0
  179. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +398 -0
  180. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +463 -0
  181. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +462 -0
  182. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1990 -0
  183. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +81 -0
  184. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +43 -0
  185. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-10.html +195 -0
  186. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-12.html +39 -0
  187. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-14.html +299 -0
  188. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-4.html +35 -0
  189. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +95 -0
  190. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +2187 -0
  191. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch01.html +119 -0
  192. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch02.html +47 -0
  193. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html +154 -0
  194. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +601 -0
  195. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/home.png +0 -0
  196. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +146 -0
  197. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +882 -0
  198. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +873 -0
  199. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +654 -0
  200. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left-insensitive.png +0 -0
  201. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left.png +0 -0
  202. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/object-tree.html +71 -0
  203. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right-insensitive.png +0 -0
  204. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right.png +0 -0
  205. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +283 -0
  206. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +476 -0
  207. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up-insensitive.png +0 -0
  208. data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up.png +0 -0
  209. data/vendor/local/share/gtksourceview-3.0/language-specs/R.lang +2199 -0
  210. data/vendor/local/share/gtksourceview-3.0/language-specs/actionscript.lang +268 -0
  211. data/vendor/local/share/gtksourceview-3.0/language-specs/ada.lang +221 -0
  212. data/vendor/local/share/gtksourceview-3.0/language-specs/ansforth94.lang +729 -0
  213. data/vendor/local/share/gtksourceview-3.0/language-specs/asp.lang +1097 -0
  214. data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +330 -0
  215. data/vendor/local/share/gtksourceview-3.0/language-specs/awk.lang +138 -0
  216. data/vendor/local/share/gtksourceview-3.0/language-specs/bennugd.lang +267 -0
  217. data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +93 -0
  218. data/vendor/local/share/gtksourceview-3.0/language-specs/bluespec.lang +188 -0
  219. data/vendor/local/share/gtksourceview-3.0/language-specs/boo.lang +257 -0
  220. data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +332 -0
  221. data/vendor/local/share/gtksourceview-3.0/language-specs/cg.lang +232 -0
  222. data/vendor/local/share/gtksourceview-3.0/language-specs/changelog.lang +93 -0
  223. data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
  224. data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +408 -0
  225. data/vendor/local/share/gtksourceview-3.0/language-specs/cobol.lang +647 -0
  226. data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +120 -0
  227. data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +282 -0
  228. data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +542 -0
  229. data/vendor/local/share/gtksourceview-3.0/language-specs/cuda.lang +292 -0
  230. data/vendor/local/share/gtksourceview-3.0/language-specs/d.lang +318 -0
  231. data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +262 -0
  232. data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +300 -0
  233. data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +85 -0
  234. data/vendor/local/share/gtksourceview-3.0/language-specs/docbook.lang +476 -0
  235. data/vendor/local/share/gtksourceview-3.0/language-specs/dosbatch.lang +167 -0
  236. data/vendor/local/share/gtksourceview-3.0/language-specs/dot.lang +140 -0
  237. data/vendor/local/share/gtksourceview-3.0/language-specs/dpatch.lang +48 -0
  238. data/vendor/local/share/gtksourceview-3.0/language-specs/dtd.lang +140 -0
  239. data/vendor/local/share/gtksourceview-3.0/language-specs/eiffel.lang +239 -0
  240. data/vendor/local/share/gtksourceview-3.0/language-specs/erlang.lang +258 -0
  241. data/vendor/local/share/gtksourceview-3.0/language-specs/fcl.lang +113 -0
  242. data/vendor/local/share/gtksourceview-3.0/language-specs/forth.lang +235 -0
  243. data/vendor/local/share/gtksourceview-3.0/language-specs/fortran.lang +591 -0
  244. data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +325 -0
  245. data/vendor/local/share/gtksourceview-3.0/language-specs/gap.lang +85 -0
  246. data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +152 -0
  247. data/vendor/local/share/gtksourceview-3.0/language-specs/glsl.lang +483 -0
  248. data/vendor/local/share/gtksourceview-3.0/language-specs/go.lang +275 -0
  249. data/vendor/local/share/gtksourceview-3.0/language-specs/gtk-doc.lang +91 -0
  250. data/vendor/local/share/gtksourceview-3.0/language-specs/gtkrc.lang +116 -0
  251. data/vendor/local/share/gtksourceview-3.0/language-specs/haddock.lang +162 -0
  252. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell-literate.lang +59 -0
  253. data/vendor/local/share/gtksourceview-3.0/language-specs/haskell.lang +228 -0
  254. data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +281 -0
  255. data/vendor/local/share/gtksourceview-3.0/language-specs/idl-exelis.lang +620 -0
  256. data/vendor/local/share/gtksourceview-3.0/language-specs/idl.lang +154 -0
  257. data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +784 -0
  258. data/vendor/local/share/gtksourceview-3.0/language-specs/ini.lang +95 -0
  259. data/vendor/local/share/gtksourceview-3.0/language-specs/j.lang +240 -0
  260. data/vendor/local/share/gtksourceview-3.0/language-specs/java.lang +190 -0
  261. data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +339 -0
  262. data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -0
  263. data/vendor/local/share/gtksourceview-3.0/language-specs/julia.lang +378 -0
  264. data/vendor/local/share/gtksourceview-3.0/language-specs/language.dtd +73 -0
  265. data/vendor/local/share/gtksourceview-3.0/language-specs/language.rng +373 -0
  266. data/vendor/local/share/gtksourceview-3.0/language-specs/language2.rng +482 -0
  267. data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +600 -0
  268. data/vendor/local/share/gtksourceview-3.0/language-specs/lex.lang +209 -0
  269. data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -0
  270. data/vendor/local/share/gtksourceview-3.0/language-specs/llvm.lang +315 -0
  271. data/vendor/local/share/gtksourceview-3.0/language-specs/lua.lang +157 -0
  272. data/vendor/local/share/gtksourceview-3.0/language-specs/m4.lang +1375 -0
  273. data/vendor/local/share/gtksourceview-3.0/language-specs/makefile.lang +193 -0
  274. data/vendor/local/share/gtksourceview-3.0/language-specs/mallard.lang +124 -0
  275. data/vendor/local/share/gtksourceview-3.0/language-specs/markdown.lang +402 -0
  276. data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +171 -0
  277. data/vendor/local/share/gtksourceview-3.0/language-specs/mediawiki.lang +327 -0
  278. data/vendor/local/share/gtksourceview-3.0/language-specs/modelica.lang +262 -0
  279. data/vendor/local/share/gtksourceview-3.0/language-specs/mxml.lang +65 -0
  280. data/vendor/local/share/gtksourceview-3.0/language-specs/nemerle.lang +263 -0
  281. data/vendor/local/share/gtksourceview-3.0/language-specs/netrexx.lang +319 -0
  282. data/vendor/local/share/gtksourceview-3.0/language-specs/nsis.lang +88 -0
  283. data/vendor/local/share/gtksourceview-3.0/language-specs/objc.lang +120 -0
  284. data/vendor/local/share/gtksourceview-3.0/language-specs/objj.lang +128 -0
  285. data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +302 -0
  286. data/vendor/local/share/gtksourceview-3.0/language-specs/ocl.lang +139 -0
  287. data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +859 -0
  288. data/vendor/local/share/gtksourceview-3.0/language-specs/ooc.lang +265 -0
  289. data/vendor/local/share/gtksourceview-3.0/language-specs/opal.lang +343 -0
  290. data/vendor/local/share/gtksourceview-3.0/language-specs/opencl.lang +600 -0
  291. data/vendor/local/share/gtksourceview-3.0/language-specs/pascal.lang +268 -0
  292. data/vendor/local/share/gtksourceview-3.0/language-specs/perl.lang +1045 -0
  293. data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +363 -0
  294. data/vendor/local/share/gtksourceview-3.0/language-specs/pkgconfig.lang +62 -0
  295. data/vendor/local/share/gtksourceview-3.0/language-specs/po.lang +94 -0
  296. data/vendor/local/share/gtksourceview-3.0/language-specs/prolog.lang +249 -0
  297. data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +101 -0
  298. data/vendor/local/share/gtksourceview-3.0/language-specs/puppet.lang +697 -0
  299. data/vendor/local/share/gtksourceview-3.0/language-specs/python.lang +472 -0
  300. data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +192 -0
  301. data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +212 -0
  302. data/vendor/local/share/gtksourceview-3.0/language-specs/rst.lang +142 -0
  303. data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +750 -0
  304. data/vendor/local/share/gtksourceview-3.0/language-specs/scala.lang +384 -0
  305. data/vendor/local/share/gtksourceview-3.0/language-specs/scheme.lang +302 -0
  306. data/vendor/local/share/gtksourceview-3.0/language-specs/scilab.lang +209 -0
  307. data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +499 -0
  308. data/vendor/local/share/gtksourceview-3.0/language-specs/sml.lang +201 -0
  309. data/vendor/local/share/gtksourceview-3.0/language-specs/sparql.lang +448 -0
  310. data/vendor/local/share/gtksourceview-3.0/language-specs/sql.lang +618 -0
  311. data/vendor/local/share/gtksourceview-3.0/language-specs/sweave.lang +67 -0
  312. data/vendor/local/share/gtksourceview-3.0/language-specs/systemverilog.lang +263 -0
  313. data/vendor/local/share/gtksourceview-3.0/language-specs/t2t.lang +150 -0
  314. data/vendor/local/share/gtksourceview-3.0/language-specs/tcl.lang +146 -0
  315. data/vendor/local/share/gtksourceview-3.0/language-specs/texinfo.lang +448 -0
  316. data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +365 -0
  317. data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +245 -0
  318. data/vendor/local/share/gtksourceview-3.0/language-specs/verilog.lang +476 -0
  319. data/vendor/local/share/gtksourceview-3.0/language-specs/vhdl.lang +248 -0
  320. data/vendor/local/share/gtksourceview-3.0/language-specs/xml.lang +220 -0
  321. data/vendor/local/share/gtksourceview-3.0/language-specs/xslt.lang +108 -0
  322. data/vendor/local/share/gtksourceview-3.0/language-specs/yacc.lang +177 -0
  323. data/vendor/local/share/gtksourceview-3.0/language-specs/yaml.lang +214 -0
  324. data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +121 -0
  325. data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +148 -0
  326. data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +171 -0
  327. data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +129 -0
  328. data/vendor/local/share/gtksourceview-3.0/styles/solarized-dark.xml +101 -0
  329. data/vendor/local/share/gtksourceview-3.0/styles/solarized-light.xml +101 -0
  330. data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +142 -0
  331. data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +130 -0
  332. data/vendor/local/share/license/gtksourceview/AUTHORS +13 -0
  333. data/vendor/local/share/license/gtksourceview/COPYING +504 -0
  334. metadata +389 -0
@@ -0,0 +1,157 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ This file is part of GtkSourceView
5
+
6
+ Author: Bjørn Lindeijer <bjorn@lindeijer.nl>
7
+ Copyright (C) 2004 Bjørn Lindeijer <bjorn@lindeijer.nl>
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="lua" _name="Lua" version="2.0" _section="Script">
25
+ <metadata>
26
+ <property name="mimetypes">text/x-lua</property>
27
+ <property name="globs">*.lua</property>
28
+ <property name="line-comment-start">--</property>
29
+ <property name="block-comment-start">--[[</property>
30
+ <property name="block-comment-end">]]</property>
31
+ </metadata>
32
+
33
+ <styles>
34
+ <style id="comment" _name="Comment" map-to="def:comment"/>
35
+ <style id="string" _name="String" map-to="def:string"/>
36
+ <style id="keyword" _name="Keyword" map-to="def:keyword"/>
37
+ <style id="escape" _name="Escaped Character" map-to="def:special-char"/>
38
+ <style id="reserved" _name="Reserved Identifier" map-to="def:keyword"/>
39
+ <style id="function" _name="Function" map-to="def:function"/>
40
+ <style id="nil-value" _name="Nil Constant" map-to="def:special-constant"/>
41
+ <style id="boolean" _name="Boolean value" map-to="def:boolean"/>
42
+ </styles>
43
+
44
+ <definitions>
45
+ <context id="lua-escape" style-ref="escape">
46
+ <match>\\(\d\d?\d?|.)</match>
47
+ </context>
48
+
49
+ <context id="string" style-ref="string" end-at-line-end="true" class="string" class-disabled="no-spell-check">
50
+ <start>["']</start>
51
+ <end>\%{0@start}</end>
52
+ <include>
53
+ <context ref="lua-escape"/>
54
+ <context ref="def:line-continue"/>
55
+ </include>
56
+ </context>
57
+
58
+ <context id="multi-line-string" style-ref="string" class="string" class-disabled="no-spell-check">
59
+ <start>\[(=*)\[</start>
60
+ <end>]\%{1@start}]</end>
61
+ </context>
62
+
63
+ <context id="block-comment" style-ref="comment" class="comment" class-disabled="no-spell-check">
64
+ <start>--\[(=*)\[</start>
65
+ <end>]\%{1@start}]</end>
66
+ <include>
67
+ <context ref="def:in-comment"/>
68
+ </include>
69
+ </context>
70
+
71
+ <context id="line-comment" style-ref="comment" end-at-line-end="true" class="comment" class-disabled="no-spell-check">
72
+ <start>--</start>
73
+ <include>
74
+ <context ref="def:in-comment"/>
75
+ </include>
76
+ </context>
77
+
78
+ <context id="keywords" style-ref="keyword">
79
+ <keyword>and</keyword>
80
+ <keyword>break</keyword>
81
+ <keyword>do</keyword>
82
+ <keyword>else</keyword>
83
+ <keyword>elseif</keyword>
84
+ <keyword>end</keyword>
85
+ <keyword>for</keyword>
86
+ <keyword>function</keyword>
87
+ <keyword>if</keyword>
88
+ <keyword>in</keyword>
89
+ <keyword>local</keyword>
90
+ <keyword>not</keyword>
91
+ <keyword>or</keyword>
92
+ <keyword>repeat</keyword>
93
+ <keyword>return</keyword>
94
+ <keyword>then</keyword>
95
+ <keyword>until</keyword>
96
+ <keyword>while</keyword>
97
+ </context>
98
+
99
+ <context id="functions" style-ref="function">
100
+ <keyword>assert</keyword>
101
+ <keyword>collectgarbage</keyword>
102
+ <keyword>dofile</keyword>
103
+ <keyword>error</keyword>
104
+ <keyword>getfenv</keyword>
105
+ <keyword>getmetatable</keyword>
106
+ <keyword>gcinfo</keyword>
107
+ <keyword>ipairs</keyword>
108
+ <keyword>loadfile</keyword>
109
+ <keyword>loadlib</keyword>
110
+ <keyword>loadstring</keyword>
111
+ <keyword>next</keyword>
112
+ <keyword>pairs</keyword>
113
+ <keyword>pcall</keyword>
114
+ <keyword>print</keyword>
115
+ <keyword>rawequal</keyword>
116
+ <keyword>rawget</keyword>
117
+ <keyword>rawset</keyword>
118
+ <keyword>require</keyword>
119
+ <keyword>setfenv</keyword>
120
+ <keyword>setmetatable</keyword>
121
+ <keyword>tonumber</keyword>
122
+ <keyword>tostring</keyword>
123
+ <keyword>type</keyword>
124
+ <keyword>unpack</keyword>
125
+ <keyword>xpcall</keyword>
126
+ </context>
127
+
128
+ <context id="lua-reserved" style-ref="reserved">
129
+ <keyword>_[A-Z][A-Za-z0-9_]*</keyword>
130
+ </context>
131
+
132
+ <context id="nil-value" style-ref="nil-value">
133
+ <keyword>nil</keyword>
134
+ </context>
135
+
136
+ <context id="boolean" style-ref="boolean">
137
+ <keyword>false</keyword>
138
+ <keyword>true</keyword>
139
+ </context>
140
+
141
+ <context id="lua" class="no-spell-check">
142
+ <include>
143
+ <context ref="def:shebang"/>
144
+ <context ref="multi-line-string"/>
145
+ <context ref="string"/>
146
+ <context ref="block-comment"/>
147
+ <context ref="line-comment"/>
148
+ <context ref="keywords"/>
149
+ <context ref="functions"/>
150
+ <context ref="lua-reserved"/>
151
+ <context ref="nil-value"/>
152
+ <context ref="boolean"/>
153
+ </include>
154
+ </context>
155
+
156
+ </definitions>
157
+ </language>
@@ -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="Script" 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|
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|PROG_VALAC)|
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>