branch: externals/auctex commit 8b93c8f8ea96c05604b2e86be05eba5f3e1445a6 Author: Stefan Monnier <monn...@iro.umontreal.ca> Date: Sun Nov 2 01:10:30 2014 -0400
* latex-test.el: Add proper copyright header. Signed-off-by: Mosè Giordano <m...@gnu.org> --- tests/latex/latex-test.el | 28 ++++++++++++++++++++++++++++ 1 files changed, 28 insertions(+), 0 deletions(-) diff --git a/tests/latex/latex-test.el b/tests/latex/latex-test.el index a2d71e4..6e04230 100644 --- a/tests/latex/latex-test.el +++ b/tests/latex/latex-test.el @@ -1,3 +1,29 @@ +;;; latex-test.el --- tests for LaTeX mode? + +;; Copyright (C) 2014 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. + +;;; Code: + +(require 'ert) + + (defvar LaTeX-indent-tabular-test/in (expand-file-name "tabular-in.tex")) (defvar LaTeX-indent-tabular-test/out (expand-file-name "tabular-out.tex")) @@ -11,3 +37,5 @@ (with-temp-buffer (insert-file-contents LaTeX-indent-tabular-test/out) (buffer-string))))) + +;;; latex-test.el ends here