diff options
| author | Richard M. Stallman | 1999-12-30 02:57:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-12-30 02:57:12 +0000 |
| commit | 3ba2590f716a2ad4acb2eefb9f028efb241f76b7 (patch) | |
| tree | 38de0d5a9460dedf9538b8931bbe12f2d39b0e07 | |
| parent | 2b12cfbfd17d9864bbb816b6faf3435b3be40e2c (diff) | |
| download | emacs-3ba2590f716a2ad4acb2eefb9f028efb241f76b7.tar.gz emacs-3ba2590f716a2ad4acb2eefb9f028efb241f76b7.zip | |
Supply licensing info.
| -rw-r--r-- | lisp/textmodes/reftex-auc.el | 25 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-cite.el | 25 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-global.el | 25 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-index.el | 25 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-parse.el | 25 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-ref.el | 25 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-sel.el | 25 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-toc.el | 25 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-vars.el | 25 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-vcr.el | 25 |
10 files changed, 220 insertions, 30 deletions
diff --git a/lisp/textmodes/reftex-auc.el b/lisp/textmodes/reftex-auc.el index 8324357b2b4..27c4d19a096 100644 --- a/lisp/textmodes/reftex-auc.el +++ b/lisp/textmodes/reftex-auc.el | |||
| @@ -1,7 +1,26 @@ | |||
| 1 | ;;; reftex-auc.el - RefTeX's interface to AUC TeX | 1 | ;;; reftex-auc.el - RefTeX's interface to AUC TeX |
| 2 | ;;; Version: 4.9 | 2 | ;; Copyright (c) 1997, 1998, 1999 Free Software Foundation, Inc. |
| 3 | ;;; | 3 | |
| 4 | ;;; See main file reftex.el for licensing information | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.9 | ||
| 6 | ;; Keywords: tex | ||
| 7 | |||
| 8 | ;; This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | ;; GNU Emacs is free software; you can redistribute it and/or modify | ||
| 11 | ;; it under the terms of the GNU General Public License as published by | ||
| 12 | ;; the Free Software Foundation; either version 2, or (at your option) | ||
| 13 | ;; any later version. | ||
| 14 | |||
| 15 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | ;; GNU General Public License for more details. | ||
| 19 | |||
| 20 | ;; You should have received a copy of the GNU General Public License | ||
| 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to the | ||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
| 23 | ;; Boston, MA 02111-1307, USA. | ||
| 5 | 24 | ||
| 6 | (eval-when-compile (require 'cl)) | 25 | (eval-when-compile (require 'cl)) |
| 7 | (provide 'reftex-auc) | 26 | (provide 'reftex-auc) |
diff --git a/lisp/textmodes/reftex-cite.el b/lisp/textmodes/reftex-cite.el index ae42e7a932c..9d8ecc2692f 100644 --- a/lisp/textmodes/reftex-cite.el +++ b/lisp/textmodes/reftex-cite.el | |||
| @@ -1,7 +1,26 @@ | |||
| 1 | ;;; reftex-cite.el - Creating citations with RefTeX | 1 | ;;; reftex-cite.el - Creating citations with RefTeX |
| 2 | ;;; Version: 4.9 | 2 | ;; Copyright (c) 1997, 1998, 1999 Free Software Foundation, Inc. |
| 3 | ;;; | 3 | |
| 4 | ;;; See main file reftex.el for licensing information | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.9 | ||
| 6 | ;; Keywords: tex | ||
| 7 | |||
| 8 | ;; This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | ;; GNU Emacs is free software; you can redistribute it and/or modify | ||
| 11 | ;; it under the terms of the GNU General Public License as published by | ||
| 12 | ;; the Free Software Foundation; either version 2, or (at your option) | ||
| 13 | ;; any later version. | ||
| 14 | |||
| 15 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | ;; GNU General Public License for more details. | ||
| 19 | |||
| 20 | ;; You should have received a copy of the GNU General Public License | ||
| 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to the | ||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
| 23 | ;; Boston, MA 02111-1307, USA. | ||
| 5 | 24 | ||
| 6 | (eval-when-compile (require 'cl)) | 25 | (eval-when-compile (require 'cl)) |
| 7 | (provide 'reftex-cite) | 26 | (provide 'reftex-cite) |
diff --git a/lisp/textmodes/reftex-global.el b/lisp/textmodes/reftex-global.el index c62a555ac17..1f90af01b34 100644 --- a/lisp/textmodes/reftex-global.el +++ b/lisp/textmodes/reftex-global.el | |||
| @@ -1,7 +1,26 @@ | |||
| 1 | ;;; reftex-global.el - Operations on entire documents with RefTeX | 1 | ;;; reftex-global.el - Operations on entire documents with RefTeX |
| 2 | ;;; Version: 4.9 | 2 | ;; Copyright (c) 1997, 1998, 1999 Free Software Foundation, Inc. |
| 3 | ;;; | 3 | |
| 4 | ;;; See main file reftex.el for licensing information | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.9 | ||
| 6 | ;; Keywords: tex | ||
| 7 | |||
| 8 | ;; This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | ;; GNU Emacs is free software; you can redistribute it and/or modify | ||
| 11 | ;; it under the terms of the GNU General Public License as published by | ||
| 12 | ;; the Free Software Foundation; either version 2, or (at your option) | ||
| 13 | ;; any later version. | ||
| 14 | |||
| 15 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | ;; GNU General Public License for more details. | ||
| 19 | |||
| 20 | ;; You should have received a copy of the GNU General Public License | ||
| 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to the | ||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
| 23 | ;; Boston, MA 02111-1307, USA. | ||
| 5 | 24 | ||
| 6 | (eval-when-compile (require 'cl)) | 25 | (eval-when-compile (require 'cl)) |
| 7 | (provide 'reftex-global) | 26 | (provide 'reftex-global) |
diff --git a/lisp/textmodes/reftex-index.el b/lisp/textmodes/reftex-index.el index 0c020f6bf06..091bcb61137 100644 --- a/lisp/textmodes/reftex-index.el +++ b/lisp/textmodes/reftex-index.el | |||
| @@ -1,7 +1,26 @@ | |||
| 1 | ;;; reftex-index.el - Index support with RefTeX | 1 | ;;; reftex-index.el - Index support with RefTeX |
| 2 | ;;; Version: 4.9 | 2 | ;; Copyright (c) 1997, 1998, 1999 Free Software Foundation, Inc. |
| 3 | ;;; | 3 | |
| 4 | ;;; See main file reftex.el for licensing information | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.9 | ||
| 6 | ;; Keywords: tex | ||
| 7 | |||
| 8 | ;; This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | ;; GNU Emacs is free software; you can redistribute it and/or modify | ||
| 11 | ;; it under the terms of the GNU General Public License as published by | ||
| 12 | ;; the Free Software Foundation; either version 2, or (at your option) | ||
| 13 | ;; any later version. | ||
| 14 | |||
| 15 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | ;; GNU General Public License for more details. | ||
| 19 | |||
| 20 | ;; You should have received a copy of the GNU General Public License | ||
| 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to the | ||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
| 23 | ;; Boston, MA 02111-1307, USA. | ||
| 5 | 24 | ||
| 6 | (eval-when-compile (require 'cl)) | 25 | (eval-when-compile (require 'cl)) |
| 7 | (provide 'reftex-index) | 26 | (provide 'reftex-index) |
diff --git a/lisp/textmodes/reftex-parse.el b/lisp/textmodes/reftex-parse.el index f38a02425aa..4a9bb7d6424 100644 --- a/lisp/textmodes/reftex-parse.el +++ b/lisp/textmodes/reftex-parse.el | |||
| @@ -1,7 +1,26 @@ | |||
| 1 | ;;; reftex-parse.el - Parser Functions for RefTeX | 1 | ;;; reftex-parse.el - Parser Functions for RefTeX |
| 2 | ;;; Version: 4.9 | 2 | ;; Copyright (c) 1997, 1998, 1999 Free Software Foundation, Inc. |
| 3 | ;;; | 3 | |
| 4 | ;;; See main file reftex.el for licensing information | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.9 | ||
| 6 | ;; Keywords: tex | ||
| 7 | |||
| 8 | ;; This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | ;; GNU Emacs is free software; you can redistribute it and/or modify | ||
| 11 | ;; it under the terms of the GNU General Public License as published by | ||
| 12 | ;; the Free Software Foundation; either version 2, or (at your option) | ||
| 13 | ;; any later version. | ||
| 14 | |||
| 15 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | ;; GNU General Public License for more details. | ||
| 19 | |||
| 20 | ;; You should have received a copy of the GNU General Public License | ||
| 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to the | ||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
| 23 | ;; Boston, MA 02111-1307, USA. | ||
| 5 | 24 | ||
| 6 | (eval-when-compile (require 'cl)) | 25 | (eval-when-compile (require 'cl)) |
| 7 | (provide 'reftex-parse) | 26 | (provide 'reftex-parse) |
diff --git a/lisp/textmodes/reftex-ref.el b/lisp/textmodes/reftex-ref.el index 5c9e8450544..392428ac21b 100644 --- a/lisp/textmodes/reftex-ref.el +++ b/lisp/textmodes/reftex-ref.el | |||
| @@ -1,7 +1,26 @@ | |||
| 1 | ;;; reftex-ref.el - Code to create labels and references with RefTeX | 1 | ;;; reftex-ref.el - Code to create labels and references with RefTeX |
| 2 | ;;; Version: 4.9 | 2 | ;; Copyright (c) 1997, 1998, 1999 Free Software Foundation, Inc. |
| 3 | ;;; | 3 | |
| 4 | ;;; See main file reftex.el for licensing information | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.9 | ||
| 6 | ;; Keywords: tex | ||
| 7 | |||
| 8 | ;; This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | ;; GNU Emacs is free software; you can redistribute it and/or modify | ||
| 11 | ;; it under the terms of the GNU General Public License as published by | ||
| 12 | ;; the Free Software Foundation; either version 2, or (at your option) | ||
| 13 | ;; any later version. | ||
| 14 | |||
| 15 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | ;; GNU General Public License for more details. | ||
| 19 | |||
| 20 | ;; You should have received a copy of the GNU General Public License | ||
| 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to the | ||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
| 23 | ;; Boston, MA 02111-1307, USA. | ||
| 5 | 24 | ||
| 6 | (eval-when-compile (require 'cl)) | 25 | (eval-when-compile (require 'cl)) |
| 7 | (provide 'reftex-ref) | 26 | (provide 'reftex-ref) |
diff --git a/lisp/textmodes/reftex-sel.el b/lisp/textmodes/reftex-sel.el index 136186f31a0..50d655063b5 100644 --- a/lisp/textmodes/reftex-sel.el +++ b/lisp/textmodes/reftex-sel.el | |||
| @@ -1,7 +1,26 @@ | |||
| 1 | ;;; reftex-sel.el - The selection modes for RefTeX | 1 | ;;; reftex-sel.el - The selection modes for RefTeX |
| 2 | ;;; Version: 4.9 | 2 | ;; Copyright (c) 1997, 1998, 1999 Free Software Foundation, Inc. |
| 3 | ;;; | 3 | |
| 4 | ;;; See main file reftex.el for licensing information | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.9 | ||
| 6 | ;; Keywords: tex | ||
| 7 | |||
| 8 | ;; This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | ;; GNU Emacs is free software; you can redistribute it and/or modify | ||
| 11 | ;; it under the terms of the GNU General Public License as published by | ||
| 12 | ;; the Free Software Foundation; either version 2, or (at your option) | ||
| 13 | ;; any later version. | ||
| 14 | |||
| 15 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | ;; GNU General Public License for more details. | ||
| 19 | |||
| 20 | ;; You should have received a copy of the GNU General Public License | ||
| 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to the | ||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
| 23 | ;; Boston, MA 02111-1307, USA. | ||
| 5 | 24 | ||
| 6 | (eval-when-compile (require 'cl)) | 25 | (eval-when-compile (require 'cl)) |
| 7 | (provide 'reftex-sel) | 26 | (provide 'reftex-sel) |
diff --git a/lisp/textmodes/reftex-toc.el b/lisp/textmodes/reftex-toc.el index ffbf05b3296..70a529b70a8 100644 --- a/lisp/textmodes/reftex-toc.el +++ b/lisp/textmodes/reftex-toc.el | |||
| @@ -1,7 +1,26 @@ | |||
| 1 | ;;; reftex-toc.el - RefTeX's table of contents mode | 1 | ;;; reftex-toc.el - RefTeX's table of contents mode |
| 2 | ;;; Version: 4.9 | 2 | ;; Copyright (c) 1997, 1998, 1999 Free Software Foundation, Inc. |
| 3 | ;;; | 3 | |
| 4 | ;;; See main file reftex.el for licensing information | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.9 | ||
| 6 | ;; Keywords: tex | ||
| 7 | |||
| 8 | ;; This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | ;; GNU Emacs is free software; you can redistribute it and/or modify | ||
| 11 | ;; it under the terms of the GNU General Public License as published by | ||
| 12 | ;; the Free Software Foundation; either version 2, or (at your option) | ||
| 13 | ;; any later version. | ||
| 14 | |||
| 15 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | ;; GNU General Public License for more details. | ||
| 19 | |||
| 20 | ;; You should have received a copy of the GNU General Public License | ||
| 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to the | ||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
| 23 | ;; Boston, MA 02111-1307, USA. | ||
| 5 | 24 | ||
| 6 | (eval-when-compile (require 'cl)) | 25 | (eval-when-compile (require 'cl)) |
| 7 | (provide 'reftex-toc) | 26 | (provide 'reftex-toc) |
diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el index b7fa158a2fc..a295aac1db2 100644 --- a/lisp/textmodes/reftex-vars.el +++ b/lisp/textmodes/reftex-vars.el | |||
| @@ -1,7 +1,26 @@ | |||
| 1 | ;;; reftex-vars.el - Configuration variables for RefTeX | 1 | ;;; reftex-vars.el - Configuration variables for RefTeX |
| 2 | ;;; Version: 4.9 | 2 | ;; Copyright (c) 1997, 1998, 1999 Free Software Foundation, Inc. |
| 3 | ;;; | 3 | |
| 4 | ;;; See main file reftex.el for licensing information | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.9 | ||
| 6 | ;; Keywords: tex | ||
| 7 | |||
| 8 | ;; This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | ;; GNU Emacs is free software; you can redistribute it and/or modify | ||
| 11 | ;; it under the terms of the GNU General Public License as published by | ||
| 12 | ;; the Free Software Foundation; either version 2, or (at your option) | ||
| 13 | ;; any later version. | ||
| 14 | |||
| 15 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | ;; GNU General Public License for more details. | ||
| 19 | |||
| 20 | ;; You should have received a copy of the GNU General Public License | ||
| 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to the | ||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
| 23 | ;; Boston, MA 02111-1307, USA. | ||
| 5 | 24 | ||
| 6 | (eval-when-compile (require 'cl)) | 25 | (eval-when-compile (require 'cl)) |
| 7 | (provide 'reftex-vars) | 26 | (provide 'reftex-vars) |
diff --git a/lisp/textmodes/reftex-vcr.el b/lisp/textmodes/reftex-vcr.el index 7f56098b7ca..f30f48c1d77 100644 --- a/lisp/textmodes/reftex-vcr.el +++ b/lisp/textmodes/reftex-vcr.el | |||
| @@ -1,7 +1,26 @@ | |||
| 1 | ;;; reftex-vcr.el - Viewing cross references and citations with RefTeX | 1 | ;;; reftex-vcr.el - Viewing cross references and citations with RefTeX |
| 2 | ;;; Version: 4.9 | 2 | ;; Copyright (c) 1997, 1998, 1999 Free Software Foundation, Inc. |
| 3 | ;;; | 3 | |
| 4 | ;;; See main file reftex.el for licensing information | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.9 | ||
| 6 | ;; Keywords: tex | ||
| 7 | |||
| 8 | ;; This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | ;; GNU Emacs is free software; you can redistribute it and/or modify | ||
| 11 | ;; it under the terms of the GNU General Public License as published by | ||
| 12 | ;; the Free Software Foundation; either version 2, or (at your option) | ||
| 13 | ;; any later version. | ||
| 14 | |||
| 15 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | ;; GNU General Public License for more details. | ||
| 19 | |||
| 20 | ;; You should have received a copy of the GNU General Public License | ||
| 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to the | ||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
| 23 | ;; Boston, MA 02111-1307, USA. | ||
| 5 | 24 | ||
| 6 | (eval-when-compile (require 'cl)) | 25 | (eval-when-compile (require 'cl)) |
| 7 | (provide 'reftex-vcr) | 26 | (provide 'reftex-vcr) |