auctex-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[AUCTeX-diffs] GNU AUCTeX branch, master, updated. e9ddab9c38927cedad9f0


From: Mosè Giordano
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. e9ddab9c38927cedad9f059cd383c83f5e4b67ff
Date: Mon, 25 Jan 2016 21:31:53 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU AUCTeX".

The branch, master has been updated
       via  e9ddab9c38927cedad9f059cd383c83f5e4b67ff (commit)
      from  ba7755d1b778b21e5e6e1723bd38bcbec0acf6de (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit e9ddab9c38927cedad9f059cd383c83f5e4b67ff
Author: Mosè Giordano <address@hidden>
Date:   Mon Jan 25 22:30:10 2016 +0100

    Code cleaning
    
    * latex.el (TeX-arg-document): Remove useless (mapcar 'identity ...).
    Suggested by Marcin Borkowski.
    * style/biblatex.el (LaTeX-biblatex-package-options): Ditto.

diff --git a/latex.el b/latex.el
index e46fb86..d684120 100644
--- a/latex.el
+++ b/latex.el
@@ -1,6 +1,6 @@
 ;;; latex.el --- Support for LaTeX documents.
 
-;; Copyright (C) 1991, 1993-2015 Free Software Foundation, Inc.
+;; Copyright (C) 1991, 1993-2016 Free Software Foundation, Inc.
 
 ;; Maintainer: address@hidden
 ;; Keywords: tex
@@ -2059,7 +2059,7 @@ OPTIONAL and IGNORE are ignored."
                  TeX-arg-input-file-search)
                (progn
                  (message "Searching for LaTeX classes...")
-                 (mapcar 'identity (TeX-search-files-by-type 'texinputs 
'global t t)))
+                 (TeX-search-files-by-type 'texinputs 'global t t))
              LaTeX-style-list)))
     (setq style (completing-read
                 (concat "Document class: (default " LaTeX-default-style ") ")
diff --git a/style/biblatex.el b/style/biblatex.el
index 8a42a45..06cd57a 100644
--- a/style/biblatex.el
+++ b/style/biblatex.el
@@ -1,6 +1,6 @@
 ;;; biblatex.el --- AUCTeX style for `biblatex.sty' version 2.8a.
 
-;; Copyright (C) 2012-2014 Free Software Foundation, Inc.
+;; Copyright (C) 2012-2014, 2016 Free Software Foundation, Inc.
 
 ;; Author: Ralf Angeli <address@hidden>
 ;; Maintainer: address@hidden
@@ -514,7 +514,7 @@ for citation keys."
        (progn
          (message "Searching for BibLaTeX styles...")
          (setq BibLaTeX-global-style-files
-               (mapcar 'identity (TeX-search-files-by-type 'bbxinputs 'global 
t t))))
+               (TeX-search-files-by-type 'bbxinputs 'global t t)))
       ;; ...else, use for completion only standard BibLaTeX styles (see §3.3 
of
       ;; Biblatex reference manual).
       (setq BibLaTeX-global-style-files

-----------------------------------------------------------------------

Summary of changes:
 latex.el          |    4 ++--
 style/biblatex.el |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

[Prev in Thread] Current Thread [Next in Thread]