diff options
| author | Pavel Janík | 2001-07-16 07:46:48 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-07-16 07:46:48 +0000 |
| commit | 3afbc435ac942072f42bf795dea22131b03c8d93 (patch) | |
| tree | 6715b27c5ef636a36a491d4b6f5d39896cf7b472 /lisp/textmodes | |
| parent | 5d3d1e3209acdc38227b0ec5bdd8c4a31f58d8d4 (diff) | |
| download | emacs-3afbc435ac942072f42bf795dea22131b03c8d93.tar.gz emacs-3afbc435ac942072f42bf795dea22131b03c8d93.zip | |
Some fixes to follow coding conventions.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/reftex-auc.el | 9 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-cite.el | 9 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-dcr.el | 8 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-global.el | 9 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-index.el | 9 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-parse.el | 8 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-ref.el | 9 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-sel.el | 9 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-toc.el | 9 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-vars.el | 9 | ||||
| -rw-r--r-- | lisp/textmodes/reftex.el | 9 |
11 files changed, 64 insertions, 33 deletions
diff --git a/lisp/textmodes/reftex-auc.el b/lisp/textmodes/reftex-auc.el index e4f40025dfa..840bb889781 100644 --- a/lisp/textmodes/reftex-auc.el +++ b/lisp/textmodes/reftex-auc.el | |||
| @@ -1,9 +1,8 @@ | |||
| 1 | ;;; reftex-auc.el - RefTeX's interface to AUC TeX | 1 | ;;; reftex-auc.el --- RefTeX's interface to AUC TeX |
| 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. | 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.16 | 5 | ;; Version: 4.16 |
| 6 | ;; | ||
| 7 | 6 | ||
| 8 | ;; This file is part of GNU Emacs. | 7 | ;; This file is part of GNU Emacs. |
| 9 | 8 | ||
| @@ -22,6 +21,10 @@ | |||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 21 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 23 | ;; Boston, MA 02111-1307, USA. | 22 | ;; Boston, MA 02111-1307, USA. |
| 24 | 23 | ||
| 24 | ;;; Commentary: | ||
| 25 | |||
| 26 | ;;; Code: | ||
| 27 | |||
| 25 | (eval-when-compile (require 'cl)) | 28 | (eval-when-compile (require 'cl)) |
| 26 | (provide 'reftex-auc) | 29 | (provide 'reftex-auc) |
| 27 | (require 'reftex) | 30 | (require 'reftex) |
diff --git a/lisp/textmodes/reftex-cite.el b/lisp/textmodes/reftex-cite.el index 0eb70a50052..11eacce77b3 100644 --- a/lisp/textmodes/reftex-cite.el +++ b/lisp/textmodes/reftex-cite.el | |||
| @@ -1,9 +1,8 @@ | |||
| 1 | ;;; reftex-cite.el - Creating citations with RefTeX | 1 | ;;; reftex-cite.el --- creating citations with RefTeX |
| 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. | 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.16 | 5 | ;; Version: 4.16 |
| 6 | ;; | ||
| 7 | 6 | ||
| 8 | ;; This file is part of GNU Emacs. | 7 | ;; This file is part of GNU Emacs. |
| 9 | 8 | ||
| @@ -22,6 +21,10 @@ | |||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 21 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 23 | ;; Boston, MA 02111-1307, USA. | 22 | ;; Boston, MA 02111-1307, USA. |
| 24 | 23 | ||
| 24 | ;;; Commentary: | ||
| 25 | |||
| 26 | ;;; Code: | ||
| 27 | |||
| 25 | (eval-when-compile (require 'cl)) | 28 | (eval-when-compile (require 'cl)) |
| 26 | (provide 'reftex-cite) | 29 | (provide 'reftex-cite) |
| 27 | (require 'reftex) | 30 | (require 'reftex) |
diff --git a/lisp/textmodes/reftex-dcr.el b/lisp/textmodes/reftex-dcr.el index 1a1d04fb4a5..8c179ff32b1 100644 --- a/lisp/textmodes/reftex-dcr.el +++ b/lisp/textmodes/reftex-dcr.el | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; reftex-dcr.el - Viewing cross references and citations with RefTeX | 1 | ;;; reftex-dcr.el --- viewing cross references and citations with RefTeX |
| 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. | 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.16 | 5 | ;; Version: 4.16 |
| 6 | ;; | 6 | ;; |
| 7 | 7 | ||
| @@ -22,6 +22,10 @@ | |||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 23 | ;; Boston, MA 02111-1307, USA. | 23 | ;; Boston, MA 02111-1307, USA. |
| 24 | 24 | ||
| 25 | ;;; Commentary: | ||
| 26 | |||
| 27 | ;;; Code: | ||
| 28 | |||
| 25 | (eval-when-compile (require 'cl)) | 29 | (eval-when-compile (require 'cl)) |
| 26 | (provide 'reftex-dcr) | 30 | (provide 'reftex-dcr) |
| 27 | (provide 'reftex-vcr) | 31 | (provide 'reftex-vcr) |
diff --git a/lisp/textmodes/reftex-global.el b/lisp/textmodes/reftex-global.el index 07aef178217..49960027f73 100644 --- a/lisp/textmodes/reftex-global.el +++ b/lisp/textmodes/reftex-global.el | |||
| @@ -1,9 +1,8 @@ | |||
| 1 | ;;; reftex-global.el - Operations on entire documents with RefTeX | 1 | ;;; reftex-global.el --- operations on entire documents with RefTeX |
| 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. | 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.16 | 5 | ;; Version: 4.16 |
| 6 | ;; | ||
| 7 | 6 | ||
| 8 | ;; This file is part of GNU Emacs. | 7 | ;; This file is part of GNU Emacs. |
| 9 | 8 | ||
| @@ -22,6 +21,10 @@ | |||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 21 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 23 | ;; Boston, MA 02111-1307, USA. | 22 | ;; Boston, MA 02111-1307, USA. |
| 24 | 23 | ||
| 24 | ;;; Commentary: | ||
| 25 | |||
| 26 | ;;; Code: | ||
| 27 | |||
| 25 | (eval-when-compile (require 'cl)) | 28 | (eval-when-compile (require 'cl)) |
| 26 | (provide 'reftex-global) | 29 | (provide 'reftex-global) |
| 27 | (require 'reftex) | 30 | (require 'reftex) |
diff --git a/lisp/textmodes/reftex-index.el b/lisp/textmodes/reftex-index.el index e2016a54faf..161f4bb9f91 100644 --- a/lisp/textmodes/reftex-index.el +++ b/lisp/textmodes/reftex-index.el | |||
| @@ -1,9 +1,8 @@ | |||
| 1 | ;;; reftex-index.el - Index support with RefTeX | 1 | ;;; reftex-index.el --- index support with RefTeX |
| 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. | 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.16 | 5 | ;; Version: 4.16 |
| 6 | ;; | ||
| 7 | 6 | ||
| 8 | ;; This file is part of GNU Emacs. | 7 | ;; This file is part of GNU Emacs. |
| 9 | 8 | ||
| @@ -22,6 +21,10 @@ | |||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 21 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 23 | ;; Boston, MA 02111-1307, USA. | 22 | ;; Boston, MA 02111-1307, USA. |
| 24 | 23 | ||
| 24 | ;;; Commentary: | ||
| 25 | |||
| 26 | ;;; Code: | ||
| 27 | |||
| 25 | (eval-when-compile (require 'cl)) | 28 | (eval-when-compile (require 'cl)) |
| 26 | (provide 'reftex-index) | 29 | (provide 'reftex-index) |
| 27 | (require 'reftex) | 30 | (require 'reftex) |
diff --git a/lisp/textmodes/reftex-parse.el b/lisp/textmodes/reftex-parse.el index d9d04b4c115..1bb6a24bce5 100644 --- a/lisp/textmodes/reftex-parse.el +++ b/lisp/textmodes/reftex-parse.el | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; reftex-parse.el - Parser Functions for RefTeX | 1 | ;;; reftex-parse.el --- parser functions for RefTeX |
| 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. | 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.16 | 5 | ;; Version: 4.16 |
| 6 | ;; | 6 | ;; |
| 7 | 7 | ||
| @@ -22,6 +22,10 @@ | |||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 23 | ;; Boston, MA 02111-1307, USA. | 23 | ;; Boston, MA 02111-1307, USA. |
| 24 | 24 | ||
| 25 | ;;; Commentary: | ||
| 26 | |||
| 27 | ;;; Code: | ||
| 28 | |||
| 25 | (eval-when-compile (require 'cl)) | 29 | (eval-when-compile (require 'cl)) |
| 26 | (provide 'reftex-parse) | 30 | (provide 'reftex-parse) |
| 27 | (require 'reftex) | 31 | (require 'reftex) |
diff --git a/lisp/textmodes/reftex-ref.el b/lisp/textmodes/reftex-ref.el index f2aa24a4a8e..4db17b238b7 100644 --- a/lisp/textmodes/reftex-ref.el +++ b/lisp/textmodes/reftex-ref.el | |||
| @@ -1,9 +1,8 @@ | |||
| 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 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. | 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.16 | 5 | ;; Version: 4.16 |
| 6 | ;; | ||
| 7 | 6 | ||
| 8 | ;; This file is part of GNU Emacs. | 7 | ;; This file is part of GNU Emacs. |
| 9 | 8 | ||
| @@ -22,6 +21,10 @@ | |||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 21 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 23 | ;; Boston, MA 02111-1307, USA. | 22 | ;; Boston, MA 02111-1307, USA. |
| 24 | 23 | ||
| 24 | ;;; Commentary: | ||
| 25 | |||
| 26 | ;;; Code: | ||
| 27 | |||
| 25 | (eval-when-compile (require 'cl)) | 28 | (eval-when-compile (require 'cl)) |
| 26 | (provide 'reftex-ref) | 29 | (provide 'reftex-ref) |
| 27 | (require 'reftex) | 30 | (require 'reftex) |
diff --git a/lisp/textmodes/reftex-sel.el b/lisp/textmodes/reftex-sel.el index fa3f04e8d93..f36454c1995 100644 --- a/lisp/textmodes/reftex-sel.el +++ b/lisp/textmodes/reftex-sel.el | |||
| @@ -1,9 +1,8 @@ | |||
| 1 | ;;; reftex-sel.el - The selection modes for RefTeX | 1 | ;;; reftex-sel.el --- the selection modes for RefTeX |
| 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. | 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.16 | 5 | ;; Version: 4.16 |
| 6 | ;; | ||
| 7 | 6 | ||
| 8 | ;; This file is part of GNU Emacs. | 7 | ;; This file is part of GNU Emacs. |
| 9 | 8 | ||
| @@ -22,6 +21,10 @@ | |||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 21 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 23 | ;; Boston, MA 02111-1307, USA. | 22 | ;; Boston, MA 02111-1307, USA. |
| 24 | 23 | ||
| 24 | ;;; Commentary: | ||
| 25 | |||
| 26 | ;;; Code: | ||
| 27 | |||
| 25 | (eval-when-compile (require 'cl)) | 28 | (eval-when-compile (require 'cl)) |
| 26 | (provide 'reftex-sel) | 29 | (provide 'reftex-sel) |
| 27 | (require 'reftex) | 30 | (require 'reftex) |
diff --git a/lisp/textmodes/reftex-toc.el b/lisp/textmodes/reftex-toc.el index 7e290ea7342..48de2453387 100644 --- a/lisp/textmodes/reftex-toc.el +++ b/lisp/textmodes/reftex-toc.el | |||
| @@ -1,9 +1,8 @@ | |||
| 1 | ;;; reftex-toc.el - RefTeX's table of contents mode | 1 | ;;; reftex-toc.el --- RefTeX's table of contents mode |
| 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. | 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.16 | 5 | ;; Version: 4.16 |
| 6 | ;; | ||
| 7 | 6 | ||
| 8 | ;; This file is part of GNU Emacs. | 7 | ;; This file is part of GNU Emacs. |
| 9 | 8 | ||
| @@ -22,6 +21,10 @@ | |||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 21 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 23 | ;; Boston, MA 02111-1307, USA. | 22 | ;; Boston, MA 02111-1307, USA. |
| 24 | 23 | ||
| 24 | ;;; Commentary: | ||
| 25 | |||
| 26 | ;;; Code: | ||
| 27 | |||
| 25 | (eval-when-compile (require 'cl)) | 28 | (eval-when-compile (require 'cl)) |
| 26 | (provide 'reftex-toc) | 29 | (provide 'reftex-toc) |
| 27 | (require 'reftex) | 30 | (require 'reftex) |
diff --git a/lisp/textmodes/reftex-vars.el b/lisp/textmodes/reftex-vars.el index 5646779e41d..d25b05d965c 100644 --- a/lisp/textmodes/reftex-vars.el +++ b/lisp/textmodes/reftex-vars.el | |||
| @@ -1,9 +1,8 @@ | |||
| 1 | ;;; reftex-vars.el - Configuration variables for RefTeX | 1 | ;;; reftex-vars.el --- configuration variables for RefTeX |
| 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. | 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.16 | 5 | ;; Version: 4.16 |
| 6 | ;; | ||
| 7 | 6 | ||
| 8 | ;; This file is part of GNU Emacs. | 7 | ;; This file is part of GNU Emacs. |
| 9 | 8 | ||
| @@ -22,6 +21,10 @@ | |||
| 22 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 21 | ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 23 | ;; Boston, MA 02111-1307, USA. | 22 | ;; Boston, MA 02111-1307, USA. |
| 24 | 23 | ||
| 24 | ;;; Commentary: | ||
| 25 | |||
| 26 | ;;; Code: | ||
| 27 | |||
| 25 | (eval-when-compile (require 'cl)) | 28 | (eval-when-compile (require 'cl)) |
| 26 | (provide 'reftex-vars) | 29 | (provide 'reftex-vars) |
| 27 | 30 | ||
diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el index 0f57649c0af..8db74a41090 100644 --- a/lisp/textmodes/reftex.el +++ b/lisp/textmodes/reftex.el | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | ;;; reftex.el --- Minor mode for doing \label, \ref, \cite, \index in LaTeX | 1 | ;;; reftex.el --- minor mode for doing \label, \ref, \cite, \index in LaTeX |
| 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. | 2 | ;; Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> | 4 | ;; Author: Carsten Dominik <dominik@strw.LeidenUniv.nl> |
| 5 | ;; Version: 4.16 | 5 | ;; Version: 4.16 |
| 6 | ;; Keywords: tex | 6 | ;; Keywords: tex |
| 7 | 7 | ||
| 8 | ;; This file is part of GNU Emacs. | 8 | ;; This file is part of GNU Emacs. |
| 9 | 9 | ||
| @@ -2524,4 +2524,3 @@ With optional NODE, go directly to that node." | |||
| 2524 | ;;;============================================================================ | 2524 | ;;;============================================================================ |
| 2525 | 2525 | ||
| 2526 | ;;; reftex.el ends here | 2526 | ;;; reftex.el ends here |
| 2527 | |||