tsdh pushed a change to branch externals/auctex. from 62aca31 Release auctex-11.88.8 new 79c02c9 Make lengths available through `LaTeX-add-lengths'. new be9f14a Add the missing starred version of \AddEnumerateCounter. new 5b0b215 Setup preview menu/keymap only once. new e88f11f Fix error when preview isn't loaded (intentionally) new c896f96 Fix the subgroup number in a regex. new 2648a58 New function to read labels. new a4d23f6 Add menu and new functions for error overview. new 40963e5 Check engine before running LaTeX command. new 30be9cc Add support for prettify-symbols-mode new eff71a7 Change | syntax to punctuation; fixes bug#21366 new 2da69ab Add fontification for `\newcolumntype'. new 0b3a6e8 Do not indent the content of `Form' environment. new 8d5acb0 Do not indent the content of `filecontents[*]' env. new a3e3ab8 Add new style transparent.el. new a85d7c6 Add support for undocumented macros `\captionbox[*]'. new a07f436 Implement TeX-update. new dbc87df Generate PDF via dvips+ps2pdf. new 400609e New TeX--if-macro-fboundp compatibility macro new 33cee84 Allow TeX-command-sequence to process the region new 66b97ff Don't add font-latex-setup to latex-mode-hook new dd9adef Case-sensitive mode detection + AMS-TeX fixes new 513490f Implement multi-level script fontification new 08ab3c1 Allow hiding ^ and _ script signs new 57338ec Improve my last commit new 76eb240 Docfix new c3cb0ff Rename TeX-update to TeX-command-run-all. new 22c7d9f Implement "run-all" for regions and sections new e2b2413 Reference TeX-command-run-all in documentation. new 647a8fc Fixes for "run-all" on current section new d4ba585 Fix missing unfontification of invisible property new 0377238 Add TeX-compile-run-all to AUCTeX reference card. new 6b3cbea Suggest to run Index when appropriate. new 69004bc Fix wrong TeX-command-default guess for region files new 29261e3 Minor improvements to hyperref.el. new 5dd4f21 Style file for polyglossia package. new 066cf5a Create Italian style file for polyglossia. new f4c5af9 Fix loading of polyglossia language style files. new 2b648fe Remove one TODO in style/polyglossia.el. new 8359f08 Fix in Italian language polyglossia style file. new 7b4b894 Add new style fontenc.el. new 4810753 Add new style Alegreya.el. new da7419f Add new style AlegreyaSans.el. new 05cf5be Append `-list' to `LaTeX-eso-pic-package-options'. new 9b5827c Fix typo in error message. new 5ed22c0 FiX TeX error parsing. new 4cfe30e Do not reference auto.el in Makefile and gitignore. new 9cfd5d8 Improve LaTeX-find-matching-end new 3536b06 Use default argument of completing-read. new a76afdf Add abstract env only to classes defining it. new 100ba35 Fix mail address in Maintainer-header. new f470df8 Make `LaTeX-indent-environment-list' local. new 440936d Make `LaTeX-indent-environment-list' local. new 320de59 Apply some fixes to caption.el. new 13941d8 Add new style subcaption.el. new a864241 Fixup space-before-tab git warned about. new 3bb1cbe Add font-latex specific prettify-symbols-compose-predicate new 0ac0fa8 Avoid searching with kpathsea in duplicate directories. new 48093fa Use LaTeX-add-lengths for LaTeX-lengths. new f9a7928 Add new style newfloat.el. new 5ee567c Append entries to LaTeX-label-alist in newfloat.el. new 96639fb Fix previous commit. new 0c4e740 Fix typo in comment. new cac89e9 Start supporting ConTeXt Mark IV. new ce8981a Fontify math environment new 1ec0278 Different approach to support ConTeXt Mark IV. new e85968c Support caption.el and some other fixes. new 3b5f047 Add supporto to ConTeXt Mark IV in some sentinels. new 8a2bd0b Fix previous commit. new ac8d479 Support newfloat.el. new 7332f76 Add user-defined values to "style" key. new 7df138d Remove unused `prompt' from arguments list. new 4a12225 Use `LaTeX-add-counters' on "LTchunksize". new 6f77ad9 Split TeX-expand-list into a builtin and a custom list. new 1f116b8 Fill $...$ like \(...\) (bug#21645) new 93d50ea Do not disable PDF when using pstricks with XeTeX. new 25a9c18 Define TeX-completing-read-multiple for Emacs 24.4 and later. new b072f9c Make sure there is a working TeX distribution before running *tex. new 2f22938 Merge branch 'master' into elpa
Summary of changes: .gitignore | 1 - ChangeLog | 421 +++++++++++++++++++++++ Makefile.in | 12 +- context.el | 114 +++++-- doc/auctex.texi | 62 +++- doc/changes.texi | 24 ++- doc/quickstart.texi | 18 + doc/tex-ref.tex | 17 +- doc/todo.texi | 16 +- font-latex.el | 168 ++++++---- latex.el | 15 +- style/Alegreya.el | 100 ++++++ style/AlegreyaSans.el | 112 ++++++ style/amsart.el | 3 +- style/amsbook.el | 3 +- style/array.el | 8 +- style/article.el | 3 +- style/caption.el | 85 ++++- style/enumitem.el | 4 +- style/eso-pic.el | 7 +- style/filecontents.el | 10 +- style/{ltxtable.el => fontenc.el} | 45 ++-- style/gloss-italian.el | 68 ++++ style/hyperref.el | 12 +- style/listings.el | 70 ++++- style/longtable.el | 16 +- style/memoir.el | 2 + style/newfloat.el | 216 ++++++++++++ style/polyglossia.el | 355 +++++++++++++++++++ style/pstricks.el | 3 +- style/report.el | 5 +- style/scrartcl.el | 3 +- style/scrreprt.el | 1 + style/subcaption.el | 158 +++++++++ style/{expl3.el => transparent.el} | 38 +- style/wrapfig.el | 15 +- tex-buf.el | 668 ++++++++++++++++++++++++++++-------- tex.el | 238 ++++++++++--- 38 files changed, 2671 insertions(+), 445 deletions(-) create mode 100644 style/Alegreya.el create mode 100644 style/AlegreyaSans.el copy style/{ltxtable.el => fontenc.el} (53%) create mode 100644 style/gloss-italian.el create mode 100644 style/newfloat.el create mode 100644 style/polyglossia.el create mode 100644 style/subcaption.el copy style/{expl3.el => transparent.el} (58%)