emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/auctex 62aca31: Release auctex-11.88.8


From: Tassilo Horn
Subject: [elpa] externals/auctex 62aca31: Release auctex-11.88.8
Date: Fri, 28 Aug 2015 08:58:50 +0000

branch: externals/auctex
commit 62aca318848a68adbe143576c6bde2f2409b020f
Author: Tassilo Horn <address@hidden>
Commit: Tassilo Horn <address@hidden>

    Release auctex-11.88.8
---
 ChangeLog          |    2 +
 auctex.el          |    2 +-
 auctex.info        |  275 +++++++++++++++++++++++++++++-----------------------
 preview-latex.info |    4 +-
 tex-site.el        |    4 +-
 5 files changed, 162 insertions(+), 125 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 7c1792b..c9875ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2015-08-28  Tassilo Horn  <address@hidden>
 
+       * Version 11.88.8 released.
+
        * tex.el (TeX-mode-syntax-table): Use punctuation syntax for
        character | (bug#21366).
 
diff --git a/auctex.el b/auctex.el
index 5d61c9e..803087a 100644
--- a/auctex.el
+++ b/auctex.el
@@ -2,7 +2,7 @@
 
 ;; Copyright (C) 2014, 2015 Free Software Foundation, Inc.
 
-;; Version: 11.88.7
+;; Version: 11.88.8
 ;; URL: http://www.gnu.org/software/auctex/
 ;; Maintainer: address@hidden
 
diff --git a/auctex.info b/auctex.info
index fbc425d..78ccc72 100644
--- a/auctex.info
+++ b/auctex.info
@@ -1,6 +1,6 @@
 This is auctex.info, produced by makeinfo version 5.2 from auctex.texi.
 
-This manual is for AUCTeX (version 11.88.7 from 2015-08-07), a
+This manual is for AUCTeX (version 11.88.8 from 2015-08-28), a
 sophisticated TeX environment for Emacs.
 
    Copyright (C) 1992-1995, 2001, 2002, 2004-2014 Free Software
@@ -140,6 +140,10 @@ Viewing the Formatted Output
 * Starting Viewers::            Starting viewers
 * I/O Correlation::             Forward and inverse search
 
+Catching the errors
+
+* Error overview::              List of all errors and warnings
+
 Customization and Extension
 
 * Multifile::                   Multifile Documents
@@ -3636,6 +3640,18 @@ to add support for engines not covered per default.
      string.  An empty string or nil means there is no command
      available.
 
+   Some LaTeX packages requires the document to be compiled with a
+specific engine.  Notably examples are fontspec and polyglossia
+packages, which require LuaTeX and XeTeX engines.  If you try to compile
+a document which loads one of such packages and the set engine is not
+one of those allowed you will be asked to select a different engine
+before running the LaTeX command.  If you do not want to be warned by
+AUCTeX in these cases, customize the option 'TeX-check-engine'.
+
+ -- User Option: TeX-check-engine
+     This boolean option controls whether AUCTeX should check the
+     correct engine has been set before running LaTeX commands.
+
    As shown above, AUCTeX handles in a special way most of the main
 options that can be given to the TeX processors.  When you need to pass
 to the TeX processor arbitrary options not handled by AUCTeX, you can
@@ -3873,7 +3889,9 @@ File: auctex.info,  Node: Debugging,  Next: Checking,  
Prev: Viewing,  Up: Proce
 =======================
 
 Once you've formatted your document you may 'debug' it, i.e.  browse
-through the errors (La)TeX reported.
+through the errors (La)TeX reported.  If you have GNU Emacs 24 or later,
+you may also have a look at a nicely formatted list of all errors and
+warnings reported by the compiler.
 
  -- Command: TeX-next-error ARG REPARSE
      ('C-c `') Go to the next error reported by TeX.  The view will be
@@ -3929,8 +3947,18 @@ error reported by TeX along with the documentation.  
There is however an
      If 'expert' AUCTeX will display the output buffer with the raw TeX
      output.
 
-   When the option 'TeX-parse-all-errors' is non-nil, you will be also
-able to open an overview of all errors and warnings reported by the TeX
+* Menu:
+
+* Error overview::            List of all errors and warnings
+
+
+File: auctex.info,  Node: Error overview,  Up: Debugging
+
+4.3.1 List of all errors and warnings
+-------------------------------------
+
+When the option 'TeX-parse-all-errors' is non-nil, you will be also able
+to open an overview of all errors and warnings reported by the TeX
 compiler.  This feature requires 'tabulated-list-mode', shipped with GNU
 Emacs 24 or later.
 
@@ -3942,8 +3970,9 @@ Emacs 24 or later.
      pressing <RET>, and visit the next or previous issue by pressing
      <n> or <p> respectively.  A prefix argument to these keys specifies
      how many errors to move forward or backward.  You can visit an
-     error also by clicking on its message.  Press <q> to quit the
-     overview.
+     error also by clicking on its message.  Jump to error point in the
+     source code with <j>, and use <l> see the error in the log buffer.
+     Press <q> to quit the overview.
 
  -- User Option: TeX-error-overview-open-after-TeX-run
      When this boolean variable is non-nil, the error overview will be
@@ -5375,7 +5404,7 @@ A.1 Copying this Manual
 
 The copyright notice for this manual is:
 
-   This manual is for AUCTeX (version 11.88.7 from 2015-08-07), a
+   This manual is for AUCTeX (version 11.88.8 from 2015-08-28), a
 sophisticated TeX environment for Emacs.
 
    Copyright (C) 1992-1995, 2001, 2002, 2004-2014 Free Software
@@ -5901,6 +5930,10 @@ News since 11.88
    * 'TeX-view-program-list' can contain, as third optional element of
      each item, the name of the executable(s) needed to open the viewer.
 
+   * When new option 'TeX-check-engine' is non-nil, before running LaTeX
+     commands AUCTeX will check whether the correct engine has been set,
+     based upon known restrictions posed by LaTeX packages.
+
 News in 11.88
 =============
 
@@ -7262,12 +7295,12 @@ Key Index
 * C-c C-q C-s:                           Filling.             (line  97)
 * C-c C-r:                               Starting a Command.  (line  19)
 * C-c C-s:                               Sectioning.          (line  22)
-* C-c C-t C-b:                           Debugging.           (line  45)
+* C-c C-t C-b:                           Debugging.           (line  47)
 * C-c C-t C-i:                           Processor Options.   (line  30)
 * C-c C-t C-p:                           Processor Options.   (line  16)
 * C-c C-t C-r:                           Starting a Command.  (line  75)
 * C-c C-t C-s:                           Processor Options.   (line  37)
-* C-c C-t C-w:                           Debugging.           (line  49)
+* C-c C-t C-w:                           Debugging.           (line  51)
 * C-c C-v:                               Starting Viewers.    (line  12)
 * C-c C-z:                               Starting a Command.  (line  42)
 * C-c <LFD>:                             Itemize-like.        (line  10)
@@ -7275,7 +7308,7 @@ Key Index
 * C-c ]:                                 Environments.        (line 102)
 * C-c ^:                                 Control.             (line  18)
 * C-c _:                                 Multifile.           (line  69)
-* C-c `:                                 Debugging.           (line  10)
+* C-c `:                                 Debugging.           (line  12)
 * C-c {:                                 Quotes.              (line 119)
 * C-c ~:                                 Mathematics.         (line  12)
 * C-j:                                   Indenting.           (line  81)
@@ -7285,7 +7318,7 @@ Key Index
 * C-x n g:                               Narrowing.           (line  14)
 * <LFD>:                                 Indenting.           (line  72)
 * M-C-h:                                 Marking (Texinfo).   (line  34)
-* M-g p:                                 Debugging.           (line  25)
+* M-g p:                                 Debugging.           (line  27)
 * M-q:                                   Filling.             (line  89)
 * M-<TAB>:                               Completion.          (line  19)
 * <TAB>:                                 Indenting.           (line  69)
@@ -7397,7 +7430,7 @@ Function Index
 * TeX-declare-expert-macros:             Adding Macros.       (line 261)
 * TeX-doc:                               Documentation.       (line   6)
 * TeX-electric-macro:                    Completion.          (line  66)
-* TeX-error-overview:                    Debugging.           (line  68)
+* TeX-error-overview:                    Error overview.      (line  11)
 * TeX-fold-buffer:                       Folding.             (line  43)
 * TeX-fold-clearout-buffer:              Folding.             (line 121)
 * TeX-fold-clearout-item:                Folding.             (line 133)
@@ -7422,18 +7455,18 @@ Function Index
 * TeX-kill-job:                          Control.             (line   9)
 * TeX-master-file-ask:                   Multifile.           (line  68)
 * TeX-narrow-to-group:                   Narrowing.           (line  13)
-* TeX-next-error:                        Debugging.           (line   9)
+* TeX-next-error:                        Debugging.           (line  11)
 * TeX-normal-mode:                       Parsing Files.       (line  43)
 * TeX-PDF-mode:                          Processor Options.   (line  15)
 * TeX-pin-region:                        Starting a Command.  (line  74)
-* TeX-previous-error:                    Debugging.           (line  24)
+* TeX-previous-error:                    Debugging.           (line  26)
 * TeX-read-key-val:                      Adding Macros.       (line 243)
 * TeX-recenter-output-buffer:            Control.             (line  13)
 * TeX-save-document:                     Multifile.           (line  96)
 * TeX-source-correlate-mode:             Processor Options.   (line  36)
 * TeX-source-correlate-mode <1>:         I/O Correlation.     (line  12)
-* TeX-toggle-debug-bad-boxes:            Debugging.           (line  44)
-* TeX-toggle-debug-warnings:             Debugging.           (line  48)
+* TeX-toggle-debug-bad-boxes:            Debugging.           (line  46)
+* TeX-toggle-debug-warnings:             Debugging.           (line  50)
 * TeX-view:                              Starting Viewers.    (line  11)
 * TeX-view <1>:                          I/O Correlation.     (line  42)
 * Texinfo-mark-environment:              Marking (Texinfo).   (line  24)
@@ -7634,12 +7667,13 @@ Variable Index
 * TeX-auto-save:                         Parsing Files.       (line  40)
 * TeX-auto-untabify:                     Parsing Files.       (line  57)
 * TeX-brace-indent-level:                Indenting.           (line 102)
+* TeX-check-engine:                      Processor Options.   (line 114)
 * TeX-check-path:                        Selecting a Command. (line  67)
 * TeX-clean-confirm:                     Cleaning.            (line  26)
 * TeX-close-quote:                       Quotes.              (line  25)
 * TeX-command:                           Processor Options.   (line  84)
 * TeX-command-default:                   Selecting a Command. (line  42)
-* TeX-command-extra-options:             Processor Options.   (line 110)
+* TeX-command-extra-options:             Processor Options.   (line 122)
 * TeX-command-list:                      Starting a Command.  (line  16)
 * TeX-command-list <1>:                  Starting a Command.  (line  32)
 * TeX-command-list <2>:                  Selecting a Command. (line  14)
@@ -7649,7 +7683,7 @@ Variable Index
 * TeX-default-macro:                     Completion.          (line  51)
 * TeX-default-mode:                      Japanese.            (line   6)
 * TeX-default-mode <1>:                  Japanese.            (line  21)
-* TeX-display-help:                      Debugging.           (line  56)
+* TeX-display-help:                      Debugging.           (line  58)
 * TeX-DVI-via-PDFTeX:                    Processor Options.   (line  22)
 * TeX-electric-escape:                   Completion.          (line  58)
 * TeX-electric-math:                     Quotes.              (line  72)
@@ -7658,11 +7692,11 @@ Variable Index
 * TeX-engine-alist:                      Processor Options.   (line  84)
 * TeX-engine-alist <1>:                  Processor Options.   (line  95)
 * TeX-engine-alist-builtin:              Processor Options.   (line  84)
-* TeX-error-overview-frame-parameters:   Debugging.           (line  97)
-* TeX-error-overview-open-after-TeX-run: Debugging.           (line  79)
-* TeX-error-overview-setup:              Debugging.           (line  88)
+* TeX-error-overview-frame-parameters:   Error overview.      (line  41)
+* TeX-error-overview-open-after-TeX-run: Error overview.      (line  23)
+* TeX-error-overview-setup:              Error overview.      (line  32)
 * TeX-expand-list:                       Selecting a Command. (line  14)
-* TeX-file-line-error:                   Processor Options.   (line 130)
+* TeX-file-line-error:                   Processor Options.   (line 142)
 * TeX-file-recurse:                      Automatic.           (line  44)
 * TeX-fold-auto:                         Folding.             (line  71)
 * TeX-fold-command-prefix:               Folding.             (line 146)
@@ -7710,7 +7744,7 @@ Variable Index
 * TeX-open-quote:                        Quotes.              (line  21)
 * TeX-outline-extra:                     Outline.             (line  13)
 * TeX-output-view-style:                 Starting Viewers.    (line 104)
-* TeX-parse-all-errors:                  Debugging.           (line  33)
+* TeX-parse-all-errors:                  Debugging.           (line  35)
 * TeX-parse-self:                        Parsing Files.       (line  37)
 * TeX-PDF-mode:                          Processor Options.   (line  16)
 * TeX-quote-after-quote:                 Quotes.              (line  29)
@@ -7718,7 +7752,7 @@ Variable Index
 * TeX-region:                            Starting a Command.  (line  32)
 * TeX-region <1>:                        Starting a Command.  (line  55)
 * TeX-save-query:                        Multifile.           (line 100)
-* TeX-show-compilation:                  Processor Options.   (line 123)
+* TeX-show-compilation:                  Processor Options.   (line 135)
 * TeX-source-correlate-method:           Processor Options.   (line  48)
 * TeX-source-correlate-method <1>:       I/O Correlation.     (line  21)
 * TeX-source-correlate-mode:             Processor Options.   (line  37)
@@ -7797,7 +7831,7 @@ Concept Index
                                                               (line   6)
 * ASCII pTeX <1>:                        Japanese.            (line   6)
 * 'auctex.el':                           Loading the package. (line  14)
-* 'auctex.el' <1>:                       Changes.             (line 293)
+* 'auctex.el' <1>:                       Changes.             (line 297)
 * 'auto' directories.:                   Automatic.           (line   6)
 * Auto-Reveal:                           Folding.             (line   6)
 * Automatic:                             Automatic.           (line   6)
@@ -8098,7 +8132,7 @@ Concept Index
                                                               (line 286)
 * 'tex-site.el':                         Loading the package. (line  14)
 * 'tex-site.el' <1>:                     Customizing.         (line   6)
-* 'tex-site.el' <2>:                     Changes.             (line 293)
+* 'tex-site.el' <2>:                     Changes.             (line 297)
 * tool bar, toolbar:                     Processing.          (line  11)
 * Trailer:                               Commands.            (line   6)
 * Underfull boxes:                       Debugging.           (line   6)
@@ -8119,99 +8153,100 @@ Concept Index
 
 Tag Table:
 Node: Top918
-Node: Copying7180
-Node: Introduction9136
-Node: Summary9406
-Node: Installation12147
-Node: Prerequisites13535
-Node: Configure16403
-Node: Build/install and uninstall21828
-Node: Loading the package22581
-Node: Advice for package providers24402
-Node: Advice for non-privileged users28347
-Node: Installation under MS Windows32305
-Node: Customizing47539
-Node: Quick Start49122
-Ref: Quick Start-Footnote-151112
-Node: Editing Facilities51259
-Node: Processing Facilities56062
-Node: Editing59956
-Node: Quotes61286
-Node: Font Specifiers69554
-Node: Sectioning71380
-Node: Environments75700
-Node: Equations80854
-Node: Floats81445
-Node: Itemize-like82978
-Node: Tabular-like83699
-Node: Customizing Environments85182
-Node: Mathematics85422
-Node: Completion88348
-Node: Marking93671
-Node: Marking (LaTeX)94295
-Node: Marking (Texinfo)95237
-Node: Commenting96847
-Node: Indenting98172
-Node: Filling104208
-Node: Display110080
-Node: Font Locking111692
-Node: Fontification of macros113767
-Node: Fontification of quotes123205
-Node: Fontification of math124700
-Node: Verbatim content126419
-Node: Faces127193
-Node: Known problems127682
-Node: Folding128611
-Node: Outline139435
-Node: Narrowing140707
-Node: Processing141757
-Node: Commands142920
-Node: Starting a Command143476
-Node: Selecting a Command148012
-Node: Processor Options151538
-Node: Viewing158280
-Node: Starting Viewers158654
-Node: I/O Correlation165172
-Node: Debugging168618
-Node: Checking172973
-Node: Control174135
-Node: Cleaning174862
-Node: Documentation176075
-Node: Customization176855
-Node: Modes and Hooks177348
-Node: Multifile179083
-Node: Parsing Files183762
-Node: Internationalization188674
-Node: European189855
-Node: Japanese196735
-Node: Automatic198432
-Node: Automatic Global200923
-Node: Automatic Private202055
-Node: Automatic Local203368
-Node: Style Files204399
-Node: Simple Style205192
-Node: Adding Macros208465
-Node: Adding Environments217586
-Node: Adding Other222247
-Node: Hacking the Parser222834
-Node: Appendices226703
-Node: Copying this Manual227087
-Node: GNU Free Documentation License227971
-Node: Changes253090
-Node: Development282486
-Node: Mid-term Goals283132
-Node: Wishlist284349
-Node: Bugs290306
-Node: FAQ291836
-Node: Texinfo mode298009
-Node: Exploiting299145
-Node: Superseding299965
-Node: Mapping304169
-Node: Unbinding305998
-Node: Indices306819
-Node: Key Index307044
-Node: Function Index313076
-Node: Variable Index323521
-Node: Concept Index344410
+Node: Copying7266
+Node: Introduction9222
+Node: Summary9492
+Node: Installation12233
+Node: Prerequisites13621
+Node: Configure16489
+Node: Build/install and uninstall21914
+Node: Loading the package22667
+Node: Advice for package providers24488
+Node: Advice for non-privileged users28433
+Node: Installation under MS Windows32391
+Node: Customizing47625
+Node: Quick Start49208
+Ref: Quick Start-Footnote-151198
+Node: Editing Facilities51345
+Node: Processing Facilities56148
+Node: Editing60042
+Node: Quotes61372
+Node: Font Specifiers69640
+Node: Sectioning71466
+Node: Environments75786
+Node: Equations80940
+Node: Floats81531
+Node: Itemize-like83064
+Node: Tabular-like83785
+Node: Customizing Environments85268
+Node: Mathematics85508
+Node: Completion88434
+Node: Marking93757
+Node: Marking (LaTeX)94381
+Node: Marking (Texinfo)95323
+Node: Commenting96933
+Node: Indenting98258
+Node: Filling104294
+Node: Display110166
+Node: Font Locking111778
+Node: Fontification of macros113853
+Node: Fontification of quotes123291
+Node: Fontification of math124786
+Node: Verbatim content126505
+Node: Faces127279
+Node: Known problems127768
+Node: Folding128697
+Node: Outline139521
+Node: Narrowing140793
+Node: Processing141843
+Node: Commands143006
+Node: Starting a Command143562
+Node: Selecting a Command148098
+Node: Processor Options151624
+Node: Viewing159008
+Node: Starting Viewers159382
+Node: I/O Correlation165900
+Node: Debugging169346
+Node: Error overview172370
+Node: Checking174147
+Node: Control175309
+Node: Cleaning176036
+Node: Documentation177249
+Node: Customization178029
+Node: Modes and Hooks178522
+Node: Multifile180257
+Node: Parsing Files184936
+Node: Internationalization189848
+Node: European191029
+Node: Japanese197909
+Node: Automatic199606
+Node: Automatic Global202097
+Node: Automatic Private203229
+Node: Automatic Local204542
+Node: Style Files205573
+Node: Simple Style206366
+Node: Adding Macros209639
+Node: Adding Environments218760
+Node: Adding Other223421
+Node: Hacking the Parser224008
+Node: Appendices227877
+Node: Copying this Manual228261
+Node: GNU Free Documentation License229145
+Node: Changes254264
+Node: Development283867
+Node: Mid-term Goals284513
+Node: Wishlist285730
+Node: Bugs291687
+Node: FAQ293217
+Node: Texinfo mode299390
+Node: Exploiting300526
+Node: Superseding301346
+Node: Mapping305550
+Node: Unbinding307379
+Node: Indices308200
+Node: Key Index308425
+Node: Function Index314457
+Node: Variable Index324902
+Node: Concept Index345864
 
 End Tag Table
diff --git a/preview-latex.info b/preview-latex.info
index 4c34297..4b6f701 100644
--- a/preview-latex.info
+++ b/preview-latex.info
@@ -2,7 +2,7 @@ This is preview-latex.info, produced by makeinfo version 5.2 
from
 preview-latex.texi.
 
 This manual is for preview-latex, a LaTeX preview mode for AUCTeX
-(version 11.88.7 from 2015-08-07).
+(version 11.88.8 from 2015-08-28).
 
    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software
 Foundation, Inc.
@@ -1900,7 +1900,7 @@ Appendix C Copying this Manual
 The copyright notice for this manual is:
 
    This manual is for preview-latex, a LaTeX preview mode for AUCTeX
-(version 11.88.7 from 2015-08-07).
+(version 11.88.8 from 2015-08-28).
 
    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software
 Foundation, Inc.
diff --git a/tex-site.el b/tex-site.el
index 65e6f90..65842b9 100644
--- a/tex-site.el
+++ b/tex-site.el
@@ -148,11 +148,11 @@ set it with `TeX-modes-set'."
                       `(TeX-modes-set ',var ,var t))
                     (setq list (cdr list)))))) )
 
-(defconst AUCTeX-version "11.88.7"
+(defconst AUCTeX-version "11.88.8"
     "AUCTeX version.
 If not a regular release, the date of the last change.")
 
-(defconst AUCTeX-date "2015-09-07"
+(defconst AUCTeX-date "2015-08-28"
   "AUCTeX release date using the ISO 8601 format, yyyy-mm-dd.")
 
 ;; Store bibitems when saving a BibTeX buffer



reply via email to

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