freebsd_amp_hwpstate/utils/emacs
Dimitry Andric 4a16efa3e4 Vendor import of llvm trunk r178860:
http://llvm.org/svn/llvm-project/llvm/trunk@178860
2013-04-08 18:41:23 +00:00
..
README Import LLVM, at r72732. 2009-06-02 17:52:33 +00:00
emacs.el Update llvm to r84119. 2009-10-14 17:57:32 +00:00
llvm-mode.el Vendor import of llvm trunk r178860: 2013-04-08 18:41:23 +00:00
tablegen-mode.el Vendor import of llvm trunk r154661: 2012-04-14 13:54:10 +00:00

README

-*- llvm/utils/emacs/README -*-

These are syntax highlighting files for the Emacs and XEmacs editors. Included
are:

* llvm-mode.el

  Syntax highlighting mode for LLVM assembly files. To use, add this code to
  your ~/.emacs :

  (setq load-path
    (cons (expand-file-name "path-to-llvm/utils/emacs") load-path))
  (require 'llvm-mode)
  
* tablegen-mode.el

  Syntax highlighting mode for TableGen description files. To use, add this code
  to your ~/.emacs:

  (setq load-path
    (cons (expand-file-name "path-to-llvm/utils/emacs") load-path))
  (require 'tablegen-mode)


Note: If you notice missing or incorrect syntax highlighting, please contact
<llvmbugs [at] cs.uiuc.edu>; if you wish to provide a patch to improve the
functionality, it will be most appreciated. Thank you.