]> code.delx.au - gnu-emacs/blobdiff - lisp/textmodes/bib-mode.el
Add 2008 to copyright years.
[gnu-emacs] / lisp / textmodes / bib-mode.el
index 82dd8cc785c330a74c8ad9dd0b66a53ad8512927..20e69e2d68ee6ed6cef8d57362658e8e7b80cf11 100644 (file)
@@ -1,6 +1,7 @@
 ;;; bib-mode.el --- major mode for editing bib files
 
-;; Copyright (C) 1989 Free Software Foundation, Inc.
+;; Copyright (C) 1989, 2001, 2002, 2003, 2004, 2005,
+;;   2006, 2007, 2008 Free Software Foundation, Inc.
 
 ;; Maintainer: FSF
 ;; Keywords: bib
@@ -9,7 +10,7 @@
 
 ;; GNU Emacs 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 2, or (at your option)
+;; the Free Software Foundation; either version 3, or (at your option)
 ;; any later version.
 
 ;; GNU Emacs is distributed in the hope that it will be useful,
@@ -19,8 +20,8 @@
 
 ;; You should have received a copy of the GNU General Public License
 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-;; Boston, MA 02111-1307, USA.
+;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+;; Boston, MA 02110-1301, USA.
 
 ;;; Commentary:
 
@@ -34,6 +35,7 @@
 (defgroup bib nil
   "Major mode for editing bib files."
   :prefix "bib-"
+  :group 'external
   :group 'wp)
 
 (defcustom bib-file "~/my-bibliography.bib"
@@ -125,7 +127,7 @@ with the cdr.")
       ((null slots)
         (if (bobp)
            ""
-           (progn (previous-line 1) (bib-find-key bib-assoc))))
+           (progn (forward-line -1) (bib-find-key bib-assoc))))
       ((looking-at (car (car slots)))
         (cdr (car slots)))
       (t (bib-find-key (cdr slots)))
@@ -179,7 +181,7 @@ with the cdr.")
    (beginning-of-line nil)
    (push-mark (point))
    (re-search-forward "^ *$" nil 2)
-   (next-line 1)
+   (forward-line 1)
    (beginning-of-line nil))
 
 (defun unread-bib ()
@@ -235,4 +237,5 @@ named by variable `unread-bib-file'."
 
 (provide 'bib-mode)
 
+;;; arch-tag: e3a97958-3c2c-487f-9557-fafc3c98452d
 ;;; bib-mode.el ends here