/[auctex]/auctex/tex-jp.el
ViewVC logotype

Diff of /auctex/tex-jp.el

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 5.84 by angeli, Sun Oct 2 13:28:57 2005 UTC revision 5.85 by ataka, Thu Oct 6 20:36:58 2005 UTC
# Line 200  For detail, see `TeX-command-list', whic Line 200  For detail, see `TeX-command-list', whic
200           TeX-japanese-process-input-coding-system)))           TeX-japanese-process-input-coding-system)))
201  )  )
202    
 ;;; Japanese Parsing  
   
 (when (featurep 'mule)  
   
 (defconst LaTeX-auto-regexp-list  
   (append  
    '(("\\\\\\(new\\|provide\\)command\\*?{?\\\\\\(\\([a-zA-Z]\\|\\cj\\)+\\)}?\\[\\([0-9]+\\)\\]\\[\\([^\n\r]*\\)\\]"  
       (2 4 5) LaTeX-auto-optional)  
      ("\\\\\\(new\\|provide\\)command\\*?{?\\\\\\(\\([a-zA-Z]\\|\\cj\\)+\\)}?\\[\\([0-9]+\\)\\]"  
       (2 4) LaTeX-auto-arguments)  
      ("\\\\\\(new\\|provide\\)command\\*?{?\\\\\\(\\([a-zA-Z]\\|\\cj\\)+\\)}?" 2 TeX-auto-symbol)  
      ("\\\\newenvironment\\*?{?\\(\\([a-zA-Z]\\|\\cj\\)+\\)}?\\[\\([0-9]+\\)\\]\\["  
       1 LaTeX-auto-environment)  
      ("\\\\newenvironment\\*?{?\\(\\([a-zA-Z]\\|\\cj\\)+\\)}?\\[\\([0-9]+\\)\\]"  
       (1 3) LaTeX-auto-env-args)  
      ("\\\\newenvironment\\*?{?\\(\\([a-zA-Z]\\|\\cj\\)+\\)}?" 1 LaTeX-auto-environment)  
      ("\\\\newtheorem{\\(\\([a-zA-Z]\\|\\cj\\)+\\)}" 1 LaTeX-auto-environment)  
      ("\\\\input{\\(\\.*[^#}%\\\\\\.\n\r]+\\)\\(\\.[^#}%\\\\\\.\n\r]+\\)?}"  
       1 TeX-auto-file)  
      ("\\\\include{\\(\\.*[^#}%\\\\\\.\n\r]+\\)\\(\\.[^#}%\\\\\\.\n\r]+\\)?}"  
       1 TeX-auto-file)  
      ("\\\\bibitem{\\(\\([a-zA-Z]\\|\\cj\\)[^, \n\r\t%\"#'()={}]*\\)}" 1 LaTeX-auto-bibitem)  
      ("\\\\bibitem\\[[^][\n\r]+\\]{\\(\\([a-zA-Z]\\|\\cj\\)[^, \n\r\t%\"#'()={}]*\\)}"  
       1 LaTeX-auto-bibitem)  
      ("\\\\bibliography{\\([^#}\\\\\n\r]+\\)}" 1 LaTeX-auto-bibliography))  
    LaTeX-auto-class-regexp-list  
    LaTeX-auto-label-regexp-list  
    LaTeX-auto-index-regexp-list  
    LaTeX-auto-minimal-regexp-list)  
   "List of regular expression matching common LaTeX macro definitions.")  
   
 (defconst plain-TeX-auto-regexp-list  
   '(("\\\\def\\\\\\(\\([a-zA-Z]\\|\\cj\\)+\\)[^a-zA-Z@]" 1 TeX-auto-symbol-check)  
     ("\\\\let\\\\\\(\\([a-zA-Z]\\|\\cj\\)+\\)[^a-zA-Z@]" 1 TeX-auto-symbol-check)  
     ("\\\\font\\\\\\(\\([a-zA-Z]\\|\\cj\\)+\\)[^a-zA-Z@]" 1 TeX-auto-symbol)  
     ("\\\\chardef\\\\\\(\\([a-zA-Z]\\|\\cj\\)+\\)[^a-zA-Z@]" 1 TeX-auto-symbol)  
     ("\\\\new\\(count\\|dimen\\|muskip\\|skip\\)\\\\\\(\\([a-z]\\|\\cj\\)+\\)[^a-zA-Z@]"  
      2 TeX-auto-symbol)  
     ("\\\\newfont{?\\\\\\(\\([a-zA-Z]\\|\\cj\\)+\\)}?" 1 TeX-auto-symbol)  
     ("\\\\typein\\[\\\\\\(\\([a-zA-Z]\\|\\cj\\)+\\)\\]" 1 TeX-auto-symbol)  
     ("\\\\input +\\(\\.*[^#%\\\\\\.\n\r]+\\)\\(\\.[^#%\\\\\\.\n\r]+\\)?"  
      1 TeX-auto-file)  
     ("\\\\mathchardef\\\\\\(\\([a-zA-Z]\\|\\cj\\)+\\)[^a-zA-Z@]" 1 TeX-auto-symbol))  
   "List of regular expression matching common LaTeX macro definitions.")  
   
 (defconst BibTeX-auto-regexp-list  
   '(("@[Ss][Tt][Rr][Ii][Nn][Gg]" 1 ignore)  
     ("@[a-zA-Z]+[{(][ \t]*\\(\\([a-zA-Z]\\|\\cj\\)[^, \n\r\t%\"#'()={}]*\\)"  
      1 LaTeX-auto-bibitem))  
   "List of regexp-list expressions matching BibTeX items.")  
   
 )  
   
 (defconst TeX-auto-full-regexp-list  
   (append LaTeX-auto-regexp-list plain-TeX-auto-regexp-list)  
   "Full list of regular expression matching TeX macro definitions.")  
   
203  ;;; Japanese TeX modes  ;;; Japanese TeX modes
204    
205  (defvar japanese-TeX-mode nil  (defvar japanese-TeX-mode nil

Legend:
Removed from v.5.84  
changed lines
  Added in v.5.85

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26