]> code.delx.au - gnu-emacs/blobdiff - lisp/textmodes/bibtex-style.el
Update copyright year to 2015
[gnu-emacs] / lisp / textmodes / bibtex-style.el
index bc1a24464993758ca8e6ae662a41903481675cfe..8ee011744df2f2675d918dd9a00c4e5cdb8fcfb8 100644 (file)
@@ -1,6 +1,6 @@
-;;; 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, 2009, 2010, 2011, 2012  Free Software Foundation, Inc.
+;; Copyright (C) 2005, 2007-2015 Free Software Foundation, Inc.
 
 ;; Author: Stefan Monnier <monnier@iro.umontreal.ca>
 ;; Keywords: tex
@@ -63,8 +63,6 @@
     ("\\<\\(FUNCTION\\|MACRO\\)\\s-+{\\([^}\n]+\\)}"
      (2 font-lock-function-name-face))))
 
-;;;###autoload (add-to-list 'auto-mode-alist (cons (purecopy "\\.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