50 lines
1.6 KiB
Plaintext
50 lines
1.6 KiB
Plaintext
;; -*- emacs-lisp -*-
|
|
|
|
;; Copyright (C) 2017 Free Software Foundation, Inc.
|
|
|
|
;; This file is part of AUCTeX.
|
|
|
|
;; AUCTeX is free software; you can redistribute it and/or modify it
|
|
;; under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation; either version 3, or (at your option)
|
|
;; any later version.
|
|
|
|
;; AUCTeX is distributed in the hope that it will be useful, but
|
|
;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
;; General Public License for more details.
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with AUCTeX; see the file COPYING. If not, write to the Free
|
|
;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
|
;; 02110-1301, USA.
|
|
|
|
;;; Commentary:
|
|
|
|
;; This file provides some functions and .
|
|
|
|
;; It has an .emacs-lisp extension because it makes the Makefile easier!
|
|
|
|
;;; Code:
|
|
|
|
(require 'tex)
|
|
|
|
;; Add the "style/" directory to `TeX-style-path',
|
|
;; so we can load style files inside tests.
|
|
(add-to-list 'TeX-style-path
|
|
(expand-file-name "../style"
|
|
(when load-file-name
|
|
(file-name-directory load-file-name))))
|
|
|
|
(defun AUCTeX-set-ert-path (&rest sym-val)
|
|
"Set first element of SYM-VAL to the next one, and so on.
|
|
|
|
The value is the path to the test file, make sure it is expanded
|
|
in the right directory even when the ERT test from the command
|
|
line and from another directory."
|
|
(while sym-val
|
|
(set (pop sym-val)
|
|
(expand-file-name (pop sym-val)
|
|
(when load-file-name
|
|
(file-name-directory load-file-name))))))
|