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

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

[elpa] externals/auctex e6b1bf2: Regenerate info docs.


From: Tassilo Horn
Subject: [elpa] externals/auctex e6b1bf2: Regenerate info docs.
Date: Sun, 20 Dec 2020 10:41:55 -0500 (EST)

branch: externals/auctex
commit e6b1bf24e8006f73557f394c7bc778fc096e215c
Author: Tassilo Horn <tsdh@gnu.org>
Commit: Tassilo Horn <tsdh@gnu.org>

    Regenerate info docs.
---
 auctex.info        | 291 ++++++++++++++++++++++++++++++-----------------------
 preview-latex.info |  78 +++++++-------
 tex-site.el        |   5 +-
 3 files changed, 206 insertions(+), 168 deletions(-)

diff --git a/auctex.info b/auctex.info
index ae147d3..ba9bba8 100644
--- a/auctex.info
+++ b/auctex.info
@@ -1,6 +1,6 @@
 This is auctex.info, produced by makeinfo version 6.7 from auctex.texi.
 
-This manual is for AUCTeX (version 12.3.1 from 2020-10-22), a
+This manual is for AUCTeX (version 12.3.1.2020-12-20 from 2020-12-20), a
 sophisticated TeX environment for Emacs.
 
    Copyright (C) 1992-1995, 2001, 2002, 2004-2020 Free Software
@@ -1701,16 +1701,16 @@ label will be prefixed by the value specified in 
'LaTeX-section-hook'.
 
      The following variables are set before the hooks are run
 
-     LEVEL
+     LATEX-LEVEL
           Numeric section level, default set by prefix arg to
           'LaTeX-section'.
-     NAME
+     LATEX-NAME
           Name of the sectioning command, derived from LEVEL.
-     TITLE
+     LATEX-TITLE
           The title of the section, default to an empty string.
-     TOC
+     LATEX-TOC
           Entry for the table of contents list, default nil.
-     DONE-MARK
+     LATEX-DONE-MARK
           Position of point afterwards, default nil meaning after the
           inserted text.
 
@@ -1719,17 +1719,18 @@ label will be prefixed by the value specified in 
'LaTeX-section-hook'.
 
      'LaTeX-section-heading'
           Query the user about the name of the sectioning command.
-          Modifies LEVEL and NAME.
+          Modifies LATEX-LEVEL and LATEX-NAME.
      'LaTeX-section-title'
           Query the user about the title of the section.  Modifies
-          TITLE.
+          LATEX-TITLE.
      'LaTeX-section-toc'
-          Query the user for the toc entry.  Modifies TOC.
+          Query the user for the toc entry.  Modifies LATEX-TOC.
      'LaTeX-section-section'
-          Insert LaTeX section command according to NAME, TITLE, and
-          TOC.  If TOC is nil, no toc entry is inserted.  If TOC or
-          TITLE are empty strings, DONE-MARK will be placed at the point
-          they should be inserted.
+          Insert LaTeX section command according to LATEX-NAME,
+          LATEX-TITLE, and LATEX-TOC.  If LATEX-TOC is nil, no toc entry
+          is inserted.  If LATEX-TOC or LATEX-TITLE are empty strings,
+          LATEX-DONE-MARK will be placed at the point they should be
+          inserted.
      'LaTeX-section-label'
           Insert a label after the section command.  Controlled by the
           variable 'LaTeX-section-label'.
@@ -5277,7 +5278,7 @@ Here is a simple example of a style file.
       "book"
       (lambda ()
         (LaTeX-largest-level-set "chapter"))
-      LaTeX-dialect)
+      TeX-dialect)
 
    The example is from the AUCTeX sources and is loaded for any LaTeX
 document using the book document class (or style before LaTeX2e).  The
@@ -5341,10 +5342,10 @@ hook should usually be identical.
 
    In case of adding a style hook for LaTeX, when calling function
 'TeX-add-style-hook' it is thought more futureproof for argument
-DIALECT-EXPR to pass constant 'LaTeX-dialect' currently defined to
+DIALECT-EXPR to pass constant 'TeX-dialect' currently defined to
 ':latex', rather than passing ':latex' directly.
 
- -- Constant: LaTeX-dialect
+ -- Constant: TeX-dialect
      Default dialect for use with function 'TeX-add-style-hook' for
      argument DIALECT-EXPR when the hook is to be run only on LaTeX
      file, or any mode derived thereof.
@@ -5608,8 +5609,8 @@ overwrite the default prompt.
 after the previous argument, or after the macro name if this is the
 first argument.  Please leave point located after the argument you are
 inserting.  If you want point to be located somewhere else after all
-hooks have been processed, set the value of 'exit-mark'.  It will point
-nowhere, until the argument hook sets it.
+hooks have been processed, set the value of 'TeX-exit-mark'.  It will
+point nowhere, until the argument hook sets it.
 
    Some packages provide macros that are rarely useful to non-expert
 users.  Those should be marked as expert macros using
@@ -5896,8 +5897,8 @@ A.1 Copying this Manual
 
 The copyright notice for this manual is:
 
-   This manual is for AUCTeX (version 12.3.1 from 2020-10-22), a
-sophisticated TeX environment for Emacs.
+   This manual is for AUCTeX (version 12.3.1.2020-12-20 from
+2020-12-20), a sophisticated TeX environment for Emacs.
 
    Copyright (C) 1992-1995, 2001, 2002, 2004-2020 Free Software
 Foundation, Inc.
@@ -6403,6 +6404,44 @@ File: auctex.info,  Node: Changes,  Next: Development,  
Prev: Copying this Manua
 A.2 Changes and New Features
 ============================
 
+News in 13.0
+------------
+
+   * AUCTeX now uses lexical binding which has been introduced in Emacs
+     24.  This change should have no user-visible effect and require no
+     manual adaptions except in the following cases.
+
+        * Entries added to the customization variable 'TeX-expand-list'
+          also had access to variables 'command' and 'pos'.  Those are
+          now properly declared and named 'TeX-expand-command' and
+          'TeX-expand-pos'.
+
+        * Entries added to the customization variable 'TeX-expand-list'
+          had access to a variable 'file' which was bound to
+          'TeX-active-master', i.e., it evaluated to either the master
+          or region file.  This usage must be replaced with either
+          'TeX-active-master' or 'TeX-active-master-with-quotes'.
+
+        * Viewer entries in 'TeX-view-program-list' also had access to a
+          variable 'file' which was bound to the name of the master or
+          region file without extension.  Instead, the function
+          'TeX-active-master' has to be used now.
+
+        * Macro argument parsing functions could set a variable
+          'exit-mark' to the buffer position where point should be left
+          after all arguments have been read.  This variable is now
+          named 'TeX-exit-mark'.
+
+        * The functions in 'LaTeX-section-hook' had access or modified
+          the previously undeclared variables 'title', 'name', 'level',
+          'done-mark', and 'toc'.  These variables are now properly
+          declared and have the 'LaTeX-' prefix, e.g.,
+          'LaTeX-done-mark'.
+
+   * The constant 'LaTeX-dialect' has been renamed to 'TeX-dialect' and
+     moved from 'latex.el' to 'tex.el'.  'LaTeX-dialect' now is an
+     obsolete alias.
+
 News in 12.3
 ------------
 
@@ -8219,7 +8258,7 @@ Function Index
 * LaTeX-narrow-to-environment:           Narrowing.           (line  16)
 * LaTeX-section:                         Sectioning.          (line  21)
 * LaTeX-section-heading:                 Sectioning.          (line  69)
-* LaTeX-section-label:                   Sectioning.          (line  82)
+* LaTeX-section-label:                   Sectioning.          (line  83)
 * LaTeX-section-section:                 Sectioning.          (line  77)
 * LaTeX-section-title:                   Sectioning.          (line  72)
 * LaTeX-section-toc:                     Sectioning.          (line  75)
@@ -8451,7 +8490,6 @@ Variable Index
 * LaTeX-default-position:                Tabular-like.        (line  16)
 * LaTeX-default-style:                   Adding Macros.       (line 192)
 * LaTeX-default-width:                   Tabular-like.        (line  13)
-* LaTeX-dialect:                         Simple Style.        (line  81)
 * LaTeX-electric-left-right-brace:       Quotes.              (line 154)
 * LaTeX-enable-toolbar:                  Processing.          (line  11)
 * LaTeX-eqnarray-label:                  Equations.           (line  12)
@@ -8486,7 +8524,7 @@ Variable Index
 * LaTeX-section-hook:                    Sectioning.          (line  40)
 * LaTeX-section-hook <1>:                Sectioning.          (line  48)
 * LaTeX-section-label:                   Sectioning.          (line  42)
-* LaTeX-section-label <1>:               Sectioning.          (line 100)
+* LaTeX-section-label <1>:               Sectioning.          (line 101)
 * LaTeX-short-caption-prompt-length:     Floats.              (line  27)
 * LaTeX-short-caption-prompt-length <1>: Floats.              (line  51)
 * LaTeX-style-list:                      Adding Macros.       (line 192)
@@ -8547,6 +8585,7 @@ Variable Index
 * TeX-default-macro:                     Completion.          (line  91)
 * TeX-default-mode:                      Japanese.            (line   6)
 * TeX-default-mode <1>:                  Japanese.            (line  67)
+* TeX-dialect:                           Simple Style.        (line  81)
 * TeX-display-help:                      Debugging.           (line  47)
 * TeX-DVI-via-PDFTeX:                    Processor Options.   (line  22)
 * TeX-electric-escape:                   Completion.          (line  97)
@@ -8723,7 +8762,7 @@ Concept Index
                                                               (line   6)
 * ASCII pTeX <1>:                        Japanese.            (line   6)
 * auctex.el:                             Loading the package. (line  10)
-* auctex.el <1>:                         Changes.             (line 672)
+* auctex.el <1>:                         Changes.             (line 710)
 * auto directories.:                     Automatic.           (line   6)
 * Auto-Reveal:                           Folding.             (line   6)
 * Automatic:                             Automatic.           (line   6)
@@ -8871,9 +8910,9 @@ Concept Index
 * Killing a process:                     Control.             (line   6)
 * kTeX:                                  Internationalization.
                                                               (line   6)
-* Label prefix:                          Sectioning.          (line 110)
+* Label prefix:                          Sectioning.          (line 111)
 * Label prefix <1>:                      Floats.              (line  32)
-* Labels:                                Sectioning.          (line 110)
+* Labels:                                Sectioning.          (line 111)
 * Labels <1>:                            Floats.              (line  32)
 * Labels, adding:                        Adding Other.        (line   6)
 * labels, completion of:                 Completion.          (line 154)
@@ -8945,7 +8984,7 @@ Concept Index
 * Personal TeX macro directory:          Automatic Private.   (line   6)
 * pLaTeX:                                Japanese.            (line   6)
 * Polish:                                European.            (line  49)
-* Prefix for labels:                     Sectioning.          (line 110)
+* Prefix for labels:                     Sectioning.          (line 111)
 * Prefix for labels <1>:                 Floats.              (line  32)
 * preview-install-styles:                Configure.           (line  85)
 * Previewing:                            Viewing.             (line   6)
@@ -9027,7 +9066,7 @@ Concept Index
                                                               (line 257)
 * tex-site.el:                           Loading the package. (line  10)
 * tex-site.el <1>:                       Customizing.         (line   6)
-* tex-site.el <2>:                       Changes.             (line 672)
+* tex-site.el <2>:                       Changes.             (line 710)
 * tool bar, toolbar:                     Processing.          (line  11)
 * Trailer:                               Commands.            (line   6)
 * Underfull boxes:                       Debugging.           (line   6)
@@ -9048,104 +9087,104 @@ Concept Index
 
 
 Tag Table:
-Node: Top917
-Node: Copying7331
-Node: Introduction9276
-Node: Summary9546
-Node: Installation12279
-Node: Prerequisites14045
-Node: Configure16285
-Node: Build/install and uninstall20911
-Node: Loading the package21664
-Node: Advice for package providers23340
-Node: Advice for non-privileged users26145
-Node: Installation under MS Windows30110
-Node: Customizing43848
-Node: Quick Start45431
-Ref: Quick Start-Footnote-147561
-Node: Editing Facilities47655
-Node: Processing Facilities52458
-Node: Editing57159
-Node: Quotes58489
-Node: Font Specifiers66742
-Node: Sectioning68809
-Node: Environments73129
-Node: Equations78283
-Node: Floats78874
-Node: Itemize-like80878
-Node: Tabular-like81599
-Node: Customizing Environments83372
-Node: Mathematics83612
-Node: Completion86898
-Node: Marking93920
-Node: Marking (LaTeX)94544
-Node: Marking (Texinfo)95486
-Node: Commenting97096
-Node: Indenting98421
-Node: Filling104457
-Node: Display110329
-Node: Font Locking112824
-Node: Fontification of macros114899
-Node: Fontification of quotes124418
-Node: Fontification of math125913
-Node: Verbatim content129581
-Node: Faces130355
-Node: Known problems130844
-Node: Folding131841
-Node: Outline142665
-Node: Narrowing143937
-Node: Prettifying145007
-Node: Processing146244
-Node: Commands147407
-Node: Starting a Command147963
-Node: Selecting a Command152866
-Node: Processor Options161950
-Node: Viewing172297
-Node: Starting Viewers172671
-Node: I/O Correlation179798
-Node: Debugging184996
-Node: Ignoring warnings187615
-Node: Error overview189675
-Node: Checking191586
-Node: Control193179
-Node: Cleaning193906
-Node: Documentation195199
-Node: Customization195914
-Node: Modes and Hooks196407
-Node: Multifile198227
-Node: Parsing Files203039
-Node: Internationalization207951
-Node: European209264
-Node: Japanese216074
-Node: Automatic221145
-Node: Automatic Global223636
-Node: Automatic Private224768
-Node: Automatic Local226081
-Node: Style Files227113
-Node: Simple Style227906
-Node: Adding Macros231565
-Node: Adding Environments240896
-Node: Adding Other245557
-Node: Hacking the Parser246144
-Node: Appendices250013
-Node: Copying this Manual250309
-Node: GNU Free Documentation License251192
-Node: Changes276313
-Node: Development323279
-Node: Mid-term Goals323925
-Node: Wishlist325782
-Node: Bugs331223
-Node: FAQ332326
-Node: Texinfo mode337453
-Node: Exploiting338589
-Node: Superseding339409
-Node: Mapping343613
-Node: Unbinding345442
-Node: Indices346263
-Node: Key Index346426
-Node: Function Index353042
-Node: Variable Index363925
-Node: Concept Index387203
+Node: Top928
+Node: Copying7342
+Node: Introduction9287
+Node: Summary9557
+Node: Installation12290
+Node: Prerequisites14056
+Node: Configure16296
+Node: Build/install and uninstall20922
+Node: Loading the package21675
+Node: Advice for package providers23351
+Node: Advice for non-privileged users26156
+Node: Installation under MS Windows30121
+Node: Customizing43859
+Node: Quick Start45442
+Ref: Quick Start-Footnote-147572
+Node: Editing Facilities47666
+Node: Processing Facilities52469
+Node: Editing57170
+Node: Quotes58500
+Node: Font Specifiers66753
+Node: Sectioning68820
+Node: Environments73246
+Node: Equations78400
+Node: Floats78991
+Node: Itemize-like80995
+Node: Tabular-like81716
+Node: Customizing Environments83489
+Node: Mathematics83729
+Node: Completion87015
+Node: Marking94037
+Node: Marking (LaTeX)94661
+Node: Marking (Texinfo)95603
+Node: Commenting97213
+Node: Indenting98538
+Node: Filling104574
+Node: Display110446
+Node: Font Locking112941
+Node: Fontification of macros115016
+Node: Fontification of quotes124535
+Node: Fontification of math126030
+Node: Verbatim content129698
+Node: Faces130472
+Node: Known problems130961
+Node: Folding131958
+Node: Outline142782
+Node: Narrowing144054
+Node: Prettifying145124
+Node: Processing146361
+Node: Commands147524
+Node: Starting a Command148080
+Node: Selecting a Command152983
+Node: Processor Options162067
+Node: Viewing172414
+Node: Starting Viewers172788
+Node: I/O Correlation179915
+Node: Debugging185113
+Node: Ignoring warnings187732
+Node: Error overview189792
+Node: Checking191703
+Node: Control193296
+Node: Cleaning194023
+Node: Documentation195316
+Node: Customization196031
+Node: Modes and Hooks196524
+Node: Multifile198344
+Node: Parsing Files203156
+Node: Internationalization208068
+Node: European209381
+Node: Japanese216191
+Node: Automatic221262
+Node: Automatic Global223753
+Node: Automatic Private224885
+Node: Automatic Local226198
+Node: Style Files227230
+Node: Simple Style228023
+Node: Adding Macros231676
+Node: Adding Environments241011
+Node: Adding Other245672
+Node: Hacking the Parser246259
+Node: Appendices250128
+Node: Copying this Manual250424
+Node: GNU Free Documentation License251318
+Node: Changes276439
+Node: Development325161
+Node: Mid-term Goals325807
+Node: Wishlist327664
+Node: Bugs333105
+Node: FAQ334208
+Node: Texinfo mode339335
+Node: Exploiting340471
+Node: Superseding341291
+Node: Mapping345495
+Node: Unbinding347324
+Node: Indices348145
+Node: Key Index348308
+Node: Function Index354924
+Node: Variable Index365807
+Node: Concept Index389085
 
 End Tag Table
 
diff --git a/preview-latex.info b/preview-latex.info
index 0b9409b..0258504 100644
--- a/preview-latex.info
+++ b/preview-latex.info
@@ -2,7 +2,7 @@ This is preview-latex.info, produced by makeinfo version 6.7 
from
 preview-latex.texi.
 
 This manual is for preview-latex, a LaTeX preview mode for AUCTeX
-(version 12.3.1 from 2020-10-22).
+(version 12.3.1.2020-12-20 from 2020-12-20).
 
    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2017, 2018 Free
 Software Foundation, Inc.
@@ -1910,7 +1910,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 12.3.1 from 2020-10-22).
+(version 12.3.1.2020-12-20 from 2020-12-20).
 
    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2017, 2018 Free
 Software Foundation, Inc.
@@ -2530,43 +2530,43 @@ Index
 
 
 Tag Table:
-Node: Top954
-Node: Copying2226
-Node: Introduction2680
-Node: What use is it?3354
-Node: Activating preview-latex4743
-Node: Getting started5496
-Node: Basic modes of operation7443
-Node: More documentation8646
-Node: Availability9534
-Node: Contacts10143
-Node: Installation11416
-Node: Keys and lisp11617
-Node: Simple customization18693
-Node: Known problems24356
-Node: Font problems with Dvips25182
-Node: Too small bounding boxes26356
-Node: x-symbol interoperation27752
-Node: Middle-clicks paste instead of toggling29135
-Node: No images are displayed with gs 9.27 and earlier29820
-Node: For advanced users32462
-Node: The LaTeX style file32921
-Node: Package options35483
-Node: Provided commands46387
-Node: The Emacs interface53732
-Node: The preview images62443
-Node: Misplaced previews66193
-Node: ToDo69647
-Node: Frequently Asked Questions74418
-Node: Introduction to FAQ74741
-Node: Requirements75080
-Node: Installation Trouble76912
-Node: Customization79175
-Node: Troubleshooting82267
-Node: Other formats84785
-Node: Copying this Manual86100
-Node: GNU Free Documentation License87041
-Node: Index112165
+Node: Top965
+Node: Copying2237
+Node: Introduction2691
+Node: What use is it?3365
+Node: Activating preview-latex4754
+Node: Getting started5507
+Node: Basic modes of operation7454
+Node: More documentation8657
+Node: Availability9545
+Node: Contacts10154
+Node: Installation11427
+Node: Keys and lisp11628
+Node: Simple customization18704
+Node: Known problems24367
+Node: Font problems with Dvips25193
+Node: Too small bounding boxes26367
+Node: x-symbol interoperation27763
+Node: Middle-clicks paste instead of toggling29146
+Node: No images are displayed with gs 9.27 and earlier29831
+Node: For advanced users32473
+Node: The LaTeX style file32932
+Node: Package options35494
+Node: Provided commands46398
+Node: The Emacs interface53743
+Node: The preview images62454
+Node: Misplaced previews66204
+Node: ToDo69658
+Node: Frequently Asked Questions74429
+Node: Introduction to FAQ74752
+Node: Requirements75091
+Node: Installation Trouble76923
+Node: Customization79186
+Node: Troubleshooting82278
+Node: Other formats84796
+Node: Copying this Manual86111
+Node: GNU Free Documentation License87063
+Node: Index112187
 
 End Tag Table
 
diff --git a/tex-site.el b/tex-site.el
index f7c7886..61ffcd0 100644
--- a/tex-site.el
+++ b/tex-site.el
@@ -75,7 +75,6 @@ TeX-auto-* (automatically generated lisp).")
 (defcustom TeX-auto-global
     (if (file-writable-p "/usr/local/var/auctex") "/usr/local/var/auctex" 
"~/.emacs.d/auctex")
   "*Directory containing automatically generated information.
-Must end with a directory separator.
 
 For storing automatic extracted information about the TeX macros
 shared by all users of a site."
@@ -157,11 +156,11 @@ set it with `TeX-modes-set'."
                       `(TeX-modes-set ',var ,var t))
                     (setq list (cdr list)))))) )
 
-(defconst AUCTeX-version "12.3.1"
+(defconst AUCTeX-version "12.3.1.2020-12-20"
     "AUCTeX version.
 If not a regular release, the date of the last change.")
 
-(defconst AUCTeX-date "2020-10-22"
+(defconst AUCTeX-date "2020-12-20"
   "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]