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. 30a7d81b4ecfbce248a55


From: Ikumi Keita
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. 30a7d81b4ecfbce248a5531fe47fbfb57b239b3d
Date: Thu, 17 Jun 2021 05:01:29 -0400 (EDT)

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  30a7d81b4ecfbce248a5531fe47fbfb57b239b3d (commit)
       via  98a059afb8ee281a985dd503036b33af0179dde0 (commit)
       via  8c81f42ea5fafac8db74b5ef877a5148e67831f3 (commit)
       via  9b4627cf95d7524cf8ed1a76ff27b65cb11f7819 (commit)
      from  ae6a21dfad8b10035f9c8293160b22357170e51e (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 30a7d81b4ecfbce248a5531fe47fbfb57b239b3d
Author: Ikumi Keita <ikumi@ikumi.que.jp>
Date:   Wed Jun 16 15:53:49 2021 +0900

    Update document
    
    * doc/auctex.texi (Multifile): Delete description about nonexistent
    feature.

diff --git a/doc/auctex.texi b/doc/auctex.texi
index 5f01ba1..5ae6edf 100644
--- a/doc/auctex.texi
+++ b/doc/auctex.texi
@@ -4161,17 +4161,12 @@ advanced algorithm.
 (setq-default TeX-master nil) ; @r{Query for master file.}
 @end lisp
 
-@c FIXME: It doesn't seem that current implementation has this
-@c TeX-header-end aware feature.
-If @AUCTeX{} finds the line indicating the end of the header in a master
-file (@code{TeX-header-end}), it can figure out for itself that this is
-a master file.  Otherwise, it will ask for the name of the master file
+In this case, @AUCTeX{} will ask for the name of the master file
 associated with the buffer.  To avoid asking you again, @AUCTeX{} will
 automatically insert the name of the master file as a file variable
 (@pxref{File Variables,,,emacs,The Emacs Editor}).  You can also insert
 the file variable yourself, by putting the following text at the end of
 your files.
-@vindex TeX-header-end
 
 @example
 %%% Local Variables:

commit 98a059afb8ee281a985dd503036b33af0179dde0
Author: Ikumi Keita <ikumi@ikumi.que.jp>
Date:   Sat Jun 5 23:13:54 2021 +0900

    ; * doc/changes.texi: Fix markups.

diff --git a/doc/changes.texi b/doc/changes.texi
index a24ff5b..39b8308 100644
--- a/doc/changes.texi
+++ b/doc/changes.texi
@@ -177,7 +177,7 @@ More bugs fixed, other minor features implemented.
 @samp{filecontents} environment now takes an optional argument and can
 be used anywhere in a document.  The macros @samp{\Ref} and
 @samp{\labelformat} are moved from @file{varioref.sty} to @LaTeX{}
-kernel.  amsmath has a new macro @samp{\overunderset}.
+kernel.  @samp{amsmath} has a new macro @samp{\overunderset}.
 
 @item
 A new method is implemented in @previewlatex{} to adjust the foreground
@@ -229,7 +229,7 @@ in Texinfo mode.
 In addition, the option @code{TeX-electric-escape} is now effective in
 Texinfo mode.  When it is enabled, typing @kbd{@@} will invoke
 @code{TeX-electric-macro} offering completion in similar style with
-other TeX modes of @AUCTeX{}.
+other @TeX{} modes of @AUCTeX{}.
 
 @item
 Fontification support for @samp{biblatex} package is improved and

commit 8c81f42ea5fafac8db74b5ef877a5148e67831f3
Author: Ikumi Keita <ikumi@ikumi.que.jp>
Date:   Tue Jun 1 23:36:07 2021 +0900

    Fix doc strings and comment
    
    * latex.el (LaTeX-style-list):
    * preview.el.in (preview-document-pt-list):
    * tex-buf.el (TeX--concat-ext, TeX-command)
    (TeX-active-master-with-quotes):
    * tex.el (TeX-master,TeX-auto-regexp-list,TeX-auto-x-regexp-list)
    (TeX-output-dir, TeX--master-output-dir, TeX--output-dir-arg):
    Fix doc strings.
    Fix defcutom specs.
    * tex-fold.el (TeX-fold-mode): Fix comment.

diff --git a/latex.el b/latex.el
index 2351ffa..cf26383 100644
--- a/latex.el
+++ b/latex.el
@@ -2338,7 +2338,7 @@ string."
                               ("slides"))
   "List of document classes offered when inserting a document environment.
 
-If `TeX-arg-input-file-search' is set to `t', you will get
+If `TeX-arg-input-file-search' is set to t, you will get
 completion with all LaTeX classes available in your distribution
 and this variable will be ignored."
   :group 'LaTeX-environment
diff --git a/preview.el.in b/preview.el.in
index 197c459..cd3825e 100644
--- a/preview.el.in
+++ b/preview.el.in
@@ -1509,6 +1509,8 @@ This is for matching screen font size and previews."
   :group 'preview-appearance
   :type
   '(repeat (choice
+            ;; FIXME: It seems that the bug mentioned below doesn't exist
+            ;;        at least for emacs 27.2.
             ;; This is a bug: type function seems to match variables, too.
             (restricted-sexp :match-alternatives (functionp)
                              :tag "Function" :value preview-auctex-font-size)
diff --git a/tex-buf.el b/tex-buf.el
index f282c19..ce54251 100644
--- a/tex-buf.el
+++ b/tex-buf.el
@@ -84,7 +84,7 @@ Return non-nil if document needs to be re-TeX'ed."
 If NAME-OR-FILE-FN is a string, interpret it as the filename.
 Otherwise, assume it is a callable function and call it with
 EXTENSION as an argument and return the result without
-modification. EXTENSION is a string which should not start with
+modification.  EXTENSION is a string which should not start with
 '.'."
   (if (stringp name-or-file-fn)
       (if extension
@@ -489,7 +489,7 @@ Do you want to select one of these engines? "
 
 FILE-FN is the symbol of a function returning a file name.  The
 function has one optional argument, the extension to use on the
-file. Valid choices are `TeX-master-file' and `TeX-region-file'
+file.  Valid choices are `TeX-master-file' and `TeX-region-file'.
 
 Use the information in `TeX-command-list' to determine how to run
 the command.
@@ -602,9 +602,10 @@ the following three conditions are met:
   2. \" \\input\" is supplemented
   3. EXTRA is non-nil (default when expanding \"%T\")
 Adjust dynamically bound variable `TeX-expand-pos' to avoid possible
-infinite loop in `TeX-command-expand'. If PREPROCESS-FN is non-nil then
-it is called with the filename as an argument and the results is
-enclosed instead of the filename.
+infinite loop in `TeX-command-expand'.
+If PREPROCESS-FN is non-nil then it is called with the filename
+as an argument and the result is enclosed instead of the
+filename.
 
 Helper function of `TeX-command-expand'. Use only within entries in
 `TeX-expand-list-builtin' and `TeX-expand-list'."
diff --git a/tex-fold.el b/tex-fold.el
index 7698721..dbb4086 100644
--- a/tex-fold.el
+++ b/tex-fold.el
@@ -908,7 +908,7 @@ With zero or negative ARG turn mode off."
   :keymap (list (cons TeX-fold-command-prefix TeX-fold-keymap))
   (if TeX-fold-mode
       (progn
-        ;; The value t cause problem when body text is hidden in
+        ;; The value t causes problem when body text is hidden in
         ;; outline-minor-mode. (bug#36651)
         ;; In addition, it's better not to override user preference
         ;; without good reason.
diff --git a/tex.el b/tex.el
index 944fc84..d07b479 100644
--- a/tex.el
+++ b/tex.el
@@ -2282,8 +2282,8 @@ change the file.
 If the variable is 'dwim, AUCTeX will try to avoid querying by
 attempting to `do what I mean'; and then change the file.
 
-It is suggested that you use the File Variables (see the info node in
-the Emacs manual) to set this variable permanently for each file."
+It is suggested that you use the File Variables (see the info node
+`File Variables') to set this variable permanently for each file."
   :group 'TeX-command
   :group 'TeX-parse
   :type '(choice (const :tag "Query" nil)
@@ -2525,9 +2525,9 @@ be relative to that."
   "The path of the directory where output files should be placed.
 
 A relative path is interpreted as being relative to the master
-file in `TeX-master'. The path cannot contain a directory that
-starts with '.'. If this variable is nil, the output directory is
-assumed to be the same as the directory of `TeX-master'."
+file in `TeX-master'.  The path cannot contain a directory that
+starts with '.'.  If this variable is nil, the output directory
+is assumed to be the same as the directory of `TeX-master'."
   :group 'TeX-file
   :safe #'string-or-null-p
   :type '(choice (const :tag "Directory of master file" nil)
@@ -2539,8 +2539,8 @@ assumed to be the same as the directory of `TeX-master'."
 If `TeX-output-dir' is nil, then return nil.
 
 MASTER-DIR is the directory path where the master file is
-located. If RELATIVE-TO-MASTER is non-nil, make the returned path
-relative to the directory in MASTER-DIR."
+located.  If RELATIVE-TO-MASTER is non-nil, make the returned
+path relative to the directory in MASTER-DIR."
   (when TeX-output-dir
     (let* ((master-dir (expand-file-name (or master-dir "")))
            (out-dir (file-name-as-directory
@@ -2558,7 +2558,7 @@ relative to the directory in MASTER-DIR."
 
 (defun TeX--output-dir-arg (argname)
   "Format the output directory as a command argument.
-ARGNAME is prepended to the quoted output directory. If
+ARGNAME is prepended to the quoted output directory.  If
 `TeX-output-dir' is nil then return an empty string."
   (let ((out-dir (TeX--master-output-dir (TeX-master-directory) t)))
     (if out-dir
@@ -4157,14 +4157,15 @@ If SKIP is not-nil, don't insert code for SKIP."
   "List of symbols to ignore when scanning a TeX style file.")
 
 (defcustom TeX-auto-regexp-list 'TeX-auto-full-regexp-list
-  "List of regular expressions used for parsing the current file."
+  "List of regular expressions used for parsing the current file.
+It can also be a name of a variable having such value."
   :type '(radio (variable-item TeX-auto-empty-regexp-list)
                 (variable-item TeX-auto-full-regexp-list)
                 (variable-item plain-TeX-auto-regexp-list)
                 (variable-item LaTeX-auto-minimal-regexp-list)
                 (variable-item LaTeX-auto-label-regexp-list)
                 (variable-item LaTeX-auto-regexp-list)
-                (symbol :tag "Other")
+                (variable :tag "Other")
                 (repeat :tag "Specify"
                         (group (regexp :tag "Match")
                                (sexp :tag "Groups")
@@ -4235,6 +4236,7 @@ Use `TeX-auto-x-regexp-list' for parsing the region 
between
 
 (defcustom TeX-auto-x-regexp-list 'LaTeX-auto-label-regexp-list
   "List of regular expressions used for additional parsing.
+It can also be a name of a variable having such value.
 See `TeX-auto-x-parse-length'."
   :type '(radio (variable-item TeX-auto-empty-regexp-list)
                 (variable-item TeX-auto-full-regexp-list)
@@ -4242,7 +4244,7 @@ See `TeX-auto-x-parse-length'."
                 (variable-item LaTeX-auto-minimal-regexp-list)
                 (variable-item LaTeX-auto-label-regexp-list)
                 (variable-item LaTeX-auto-regexp-list)
-                (symbol :tag "Other")
+                (variable :tag "Other")
                 (repeat :tag "Specify"
                         (group (regexp :tag "Match")
                                (sexp :tag "Groups")

commit 9b4627cf95d7524cf8ed1a76ff27b65cb11f7819
Author: Ikumi Keita <ikumi@ikumi.que.jp>
Date:   Wed Jun 2 17:02:04 2021 +0900

    ; Fix TODO
    
    * doc/todo.texi (Mid-term Goals,Wishlist,Bugs):
    Do simple correction and fix markups.
    (Mid-term Goals): Add a new item.

diff --git a/doc/todo.texi b/doc/todo.texi
index 9818a8b..3c0c13f 100644
--- a/doc/todo.texi
+++ b/doc/todo.texi
@@ -47,17 +47,17 @@ development efforts and avoid redundant work.
 @item Error help catalogs
 
 Currently, the help for errors is more or less hardwired into
-@file{tex.el}.  For supporting error help in other languages, it would
+@file{latex.el}.  For supporting error help in other languages, it would
 be sensible to instead arrange error messages in language-specific
 files, make a common info file from all such catalogs in a given
 language and look the error texts up in an appropriate index.  The user
 would then specify a preference list of languages, and the errors would
 be looked up in the catalogs in sequence until they were identified.
 
-@item Combining @samp{docTeX} with RefTeX
+@item Combining @samp{docTeX} with Ref@TeX{}
 
 Macro cross references should also be usable for document navigation
-using RefTeX.
+using Ref@TeX{}.
 
 @item Fix remove-style feature
 
@@ -73,6 +73,9 @@ major mode function kills all buffer-local variables.
 As of @AUCTeX{} 12.3, @code{TeX-remove-style} is no longer used by any
 other codes.
 
+@item
+Document @code{LaTeX-insert-into-commments} and
+@code{TeX-translate-location-hook}.
 @end itemize
 
 @node Wishlist
@@ -97,7 +100,7 @@ Fringe indicators for errors in the main text would be nice.
 
 A separate frame with a table of math character graphics to click on in
 order to insert the respective sequence into the buffer (cf. the
-``grid'' of x-symbol).
+``grid'' of @samp{x-symbol}).
 
 @item Crossreferencing support
 
@@ -166,7 +169,7 @@ document.
 
 @item
 A nice hierarchical by-topic organization of all officially documented
-LaTeX macros, available from the menu bar.
+@LaTeX{} macros, available from the menu bar.
 
 @item
 @code{TeX-command-default} should be set from the master file, if not
@@ -275,7 +278,7 @@ Do not overwrite emacs warnings about existing auto-save 
files when
 loading a new file.
 
 @item
-Maybe the regexp for matching a TeX symbol during parsing should be
+Maybe the regexp for matching a @TeX{} symbol during parsing should be
 @samp{"\\\\\\([a-zA-Z]+\\|.\\)"} ---
 @email{thiemann@@informatik.uni-tuebingen.de} Peter Thiemann.
 

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

Summary of changes:
 doc/auctex.texi  |  7 +------
 doc/changes.texi |  4 ++--
 doc/todo.texi    | 15 +++++++++------
 latex.el         |  2 +-
 preview.el.in    |  2 ++
 tex-buf.el       | 11 ++++++-----
 tex-fold.el      |  2 +-
 tex.el           | 24 +++++++++++++-----------
 8 files changed, 35 insertions(+), 32 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

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