]> git.draconx.ca Git - gob-dx.git/blobdiff - src/lexer.l
Release 0.92.4
[gob-dx.git] / src / lexer.l
index 68bafd020eba981874ce6b990a026989742eb1cd..ddbd9516feb4132acfba936ceabce8744e049d5f 100644 (file)
@@ -201,6 +201,23 @@ add_gtk_doc_func(void)
        if(before_comment == C_CODE) add_to_cbuf(yytext);
                }
 
+^\%(a|all)\{           {
+                       BEGIN(C_CODE);
+                       parenth_depth = 1;
+                       class_after_c = FALSE;
+                       code_type = ACODE;
+                       clear_cbuf();
+                       ccode_line = line_no;
+               }
+^\%(at|alltop)\{               {
+                       BEGIN(C_CODE);
+                       parenth_depth = 1;
+                       class_after_c = FALSE;
+                       code_type = ATCODE;
+                       clear_cbuf();
+                       ccode_line = line_no;
+               }
+
 ^\%(ht|headertop)\{            {
                        BEGIN(C_CODE);
                        parenth_depth = 1;