Add 2012 to FSF copyright years for Emacs files
[bpt/emacs.git] / lisp / textmodes / bibtex-style.el
index f7c69ee..b0371ed 100644 (file)
@@ -1,9 +1,9 @@
-;;; bibtex-style.el --- Major mode for BibTeX Style files
+;;; bibtex-style.el --- Major mode for BibTeX Style files -*- lexical-binding: t -*-
 
-;; Copyright (C) 2005,2007, 2008  Free Software Foundation, Inc.
+;; Copyright (C) 2005, 2007-2012  Free Software Foundation, Inc.
 
 ;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
-;; Keywords: 
+;; Keywords: tex
 
 ;; This file is part of GNU Emacs.
 
@@ -63,8 +63,6 @@
     ("\\<\\(FUNCTION\\|MACRO\\)\\s-+{\\([^}\n]+\\)}"
      (2 font-lock-function-name-face))))
 
-;;;###autoload (add-to-list 'auto-mode-alist '("\\.bst\\'" . bibtex-style-mode))
-
 ;;;###autoload
 (define-derived-mode bibtex-style-mode nil "BibStyle"
   "Major mode for editing BibTeX style files."
                (looking-at "if\\$"))
            (scan-error nil))))
      (save-excursion
-       (condition-case err
+       (condition-case nil
           (while (progn
                    (backward-sexp 1)
                    (save-excursion (skip-chars-backward " \t{") (not (bolp)))))
 
 
 (provide 'bibtex-style)
-;; arch-tag: b20ad41a-fd36-466e-8fd2-cc6137f9c55c
 ;;; bibtex-style.el ends here