~ubuntu-branches/ubuntu/utopic/texlive-bin/utopic

« back to all changes in this revision

Viewing changes to utils/chktex/chktex-1.6.6/chktex.el

  • Committer: Package Import Robot
  • Author(s): Norbert Preining
  • Date: 2012-04-10 10:16:01 UTC
  • mfrom: (1.2.3)
  • Revision ID: package-import@ubuntu.com-20120410101601-7mt8nyn280xrgza6
Tags: 2011.20120410-1
* new upstream checkout:
  - remove decls of popen and pclose (Closes: #64524) (!yow, 5 digit bug!)
  - do not declare getopt in C++, fixes FTBFS with g++ >= 4.7 
    (Closes: #667392)
* add patches (maybe to be included upstream) that allows inclusion of
  one config file in another for (x)dvipdfmx. This will be
  used by the paper code.
* fix description of libptexenc-dev package (Closes: #667694)
* remove xdvik patch, included upstream
* remove conflict with ptex-bin, we are building a transitional package now
* build with internal t1lib, as t1lib is going to disappear in
  wheezy (Closes: #667912) (no, dropping xdvi is not an option!)
  (add a lintian override otherwise this gives a lintian error)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;;; chktex.el --- quick hack to add ChkTeX capability to AUC-TeX mode
 
2
;;
 
3
;;
 
4
;;  Keywords: LaTeX, AUC-TeX, ChkTeX
 
5
;;
 
6
;;  ChkTeX, quick hack to add ChkTeX in LaTeX menu.
 
7
;;  Copyright (C) 1995-96 Jens T. Berger Thielemann
 
8
;;
 
9
;;  This program is free software; you can redistribute it and/or modify
 
10
;;  it under the terms of the GNU General Public License as published by
 
11
;;  the Free Software Foundation; either version 2 of the License, or
 
12
;;  (at your option) any later version.
 
13
;;
 
14
;;  This program 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
 
17
;;  GNU General Public License for more details.
 
18
;;
 
19
;;  You should have received a copy of the GNU General Public License
 
20
;;  along with this program; if not, write to the Free Software
 
21
;;  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
22
;;
 
23
;;  Contact the author at:
 
24
;;              Jens Berger
 
25
;;              Spektrumvn. 4
 
26
;;              N-0666 Oslo
 
27
;;              Norway
 
28
;;              E-mail: <jensthi@ifi.uio.no>
 
29
;;
 
30
;;
 
31
;;; Commentary:
 
32
;;
 
33
;;  This tiny hack will add a "ChkTeX" item to the command menu of
 
34
;;  AUC-TeX, thus making the use of ChkTeX much more comfortable from
 
35
;;  within AUC-TeX (`LaTeX-mode').
 
36
;;
 
37
;;  INSTALLATION
 
38
;;
 
39
;;  1. Put this file somewhere in your loading path.
 
40
;;  2. Add the line
 
41
;;        (require 'chktex)
 
42
;;     to your .emacs file
 
43
;;
 
44
;;  It is doubtful whether byte-compiling this file gains anything.
 
45
;;
 
46
;;; Code:
 
47
;;
 
48
 
 
49
(eval-after-load 'tex
 
50
  '(progn
 
51
     (add-to-list 'TeX-command-list
 
52
                  '("ChkTeX" "chktex -v3 %s" TeX-run-compile nil t))))
 
53
 
 
54
(provide 'chktex)
 
55
 
 
56
;;; chktex.el ends here