
xi\c           @   sa   d  Z  d d l m Z m Z d d l m Z m Z m Z m Z d g Z	 d e f d     YZ
 d S(   s   
    pygments.lexers.xorg
    ~~~~~~~~~~~~~~~~~~~~

    Lexers for Xorg configs.

    :copyright: Copyright 2006-2019 by the Pygments team, see AUTHORS.
    :license: BSD, see LICENSE for details.
i(   t
   RegexLexert   bygroups(   t   Commentt   Stringt   Namet   Textt	   XorgLexerc        
   B   s   e  Z d  Z d Z d g Z d g Z g  Z i d e f d e f d e	 e
 j e e
 j  f d e
 j f d e	 e j e e j  f g d 6Z RS(	   s   Lexer for xorg.conf file.t   Xorgs	   xorg.confs   \s+s   #.*$s   ((?:Sub)?Section)(\s+)("\w+")s   (End(|Sub)Section)s   (\w+)(\s+)([^\n#]+)t   root(   t   __name__t
   __module__t   __doc__t   namet   aliasest	   filenamest	   mimetypesR   R   R   R   t   EscapeR   t   Builtint   Constantt   tokens(    (    (    s3   lib/python2.7/site-packages/pygments/lexers/xorg.pyR      s   				N(   R   t   pygments.lexerR    R   t   pygments.tokenR   R   R   R   t   __all__R   (    (    (    s3   lib/python2.7/site-packages/pygments/lexers/xorg.pyt   <module>
   s   "	