[AUCTeX-commit] GNU AUCTeX branch, lexical-binding-attempt-1, updated. 860f46c45f4d105f24d4063ba6d83124970fdbea

2020-10-18 Thread Ikumi Keita
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, lexical-binding-attempt-1 has been updated
   via  860f46c45f4d105f24d4063ba6d83124970fdbea (commit)
  from  284d1be0967665170073d7574ca5bab7c9f59025 (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 860f46c45f4d105f24d4063ba6d83124970fdbea
Author: Ikumi Keita 
Date:   Sun Oct 18 17:03:37 2020 +0900

; * style/graphicx.el: Fix Ataka-san's name and email.

---

Summary of changes:
 style/graphicx.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
GNU AUCTeX

___
auctex-commit mailing list
auctex-com...@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex-commit


[AUCTeX-diffs] GNU AUCTeX branch, lexical-binding-attempt-1, updated. 860f46c45f4d105f24d4063ba6d83124970fdbea

2020-10-18 Thread Ikumi Keita
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, lexical-binding-attempt-1 has been updated
   via  860f46c45f4d105f24d4063ba6d83124970fdbea (commit)
  from  284d1be0967665170073d7574ca5bab7c9f59025 (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 860f46c45f4d105f24d4063ba6d83124970fdbea
Author: Ikumi Keita 
Date:   Sun Oct 18 17:03:37 2020 +0900

; * style/graphicx.el: Fix Ataka-san's name and email.

diff --git a/style/graphicx.el b/style/graphicx.el
index be918bd..cfcba21 100644
--- a/style/graphicx.el
+++ b/style/graphicx.el
@@ -28,7 +28,7 @@
 ;; Acknowledgements
 ;;  Dr. Thomas Baumann 
 ;;  David Kastrup 
-;;  Masayuki Akata 
+;;  Masayuki Ataka 
 
 ;;; Code:
 

---

Summary of changes:
 style/graphicx.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
GNU AUCTeX

___
auctex-diffs mailing list
auctex-di...@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex-diffs


oddity with TeX-style-private ?

2020-10-18 Thread Uwe Brauer



Hi 

I have set 
 '(TeX-style-private
 '("/home/oub/ALLES/emacs/site-lisp/auctex-private-style"))
in my custom init file.

I just wanted to add a style for venndiagrams but I wanted to do some
testing.  Usually I reinstall auctex in that context but this time I
thought to put the file in my TeX-style-private directory 

So 

1. I wrote the file, byte compiled it even and

2. put in that directory,

3. Restarted emacs

4. Opened a file with had  \usepackage{venndiagram}

But the style file was not loaded! 

What do I miss?

Regards 

Uwe Brauer 




[AUCTeX-diffs] GNU AUCTeX branch, master, updated. 869f43f9100a069719274c8a3986801e7856bb09

2020-10-18 Thread Mosè Giordano
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  869f43f9100a069719274c8a3986801e7856bb09 (commit)
  from  c892ed81857e0bd74085cc392c52839f7362ff87 (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 869f43f9100a069719274c8a3986801e7856bb09
Author: Mosè Giordano 
Date:   Sun Oct 18 18:58:29 2020 +0100

Mark default argument to `LaTeX-arg-polyglossia-lang' as optional

* style/polyglossia.el (LaTeX-arg-polyglossia-lang): The `default' argument
  isn't currently used, mark it as ignored.

diff --git a/style/polyglossia.el b/style/polyglossia.el
index b9aa3d4..aaa688d 100644
--- a/style/polyglossia.el
+++ b/style/polyglossia.el
@@ -148,7 +148,7 @@ The last language is the default one."
 The value is actually the tail of the list of options given to LANGUAGE."
   (member option (cdr (cdr (assoc language LaTeX-polyglossia-lang-list)
 
-(defun LaTeX-arg-polyglossia-lang (_optional default multiple setkeys)
+(defun LaTeX-arg-polyglossia-lang (_optional _default multiple setkeys)
   "Prompt for language and its options with completion and insert them
 as arguments.
 
@@ -156,14 +156,16 @@ This function is triggered by \"\setdefaultlanguage\",
 \"\setotherlanguage\", \"\setotherlanguages\", and \"\setkeys\"
 macros by polyglossia package.
 
-OPTIONAL is ignored, if DEFAULT is non-nil treat inserted
-language as default, if MULTIPLE is non-nil prompt for multiple
-languages, if SETKEYS is non-nil insert options as second
-mandatory argument."
+OPTIONAL and DEFAULT are ignored, if MULTIPLE is non-nil prompt
+for multiple languages, if SETKEYS is non-nil insert options as
+second mandatory argument."
   ;; DEFAULT =  t , MULTIPLE = nil, SETKEYS = nil: "\setdefaultlanguage".
   ;; DEFAULT = nil, MULTIPLE = nil, SETKEYS = nil: "\setotherlanguage".
   ;; DEFAULT = nil, MULTIPLE =  t , SETKEYS = nil: "\setotherlanguages".
   ;; DEFAULT = nil, MULTIPLE = nil, SETKEYS =  t : "\setkeys".
+
+  ;; Note: `DEFAULT' is currently ignored because we don't really have a
+  ;; mechanism to identify the default polyglossia language.
   (let ((language (funcall
   (if multiple
   'TeX-completing-read-multiple

---

Summary of changes:
 style/polyglossia.el | 12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX

___
auctex-diffs mailing list
auctex-di...@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex-diffs


[AUCTeX-commit] GNU AUCTeX branch, master, updated. 869f43f9100a069719274c8a3986801e7856bb09

2020-10-18 Thread Mos� Giordano
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  869f43f9100a069719274c8a3986801e7856bb09 (commit)
  from  c892ed81857e0bd74085cc392c52839f7362ff87 (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 869f43f9100a069719274c8a3986801e7856bb09
Author: Mosè Giordano 
Date:   Sun Oct 18 18:58:29 2020 +0100

Mark default argument to `LaTeX-arg-polyglossia-lang' as optional

* style/polyglossia.el (LaTeX-arg-polyglossia-lang): The `default' argument
  isn't currently used, mark it as ignored.

---

Summary of changes:
 style/polyglossia.el | 12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX

___
auctex-commit mailing list
auctex-com...@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex-commit


[AUCTeX-diffs] GNU AUCTeX tag, release_12_3, created. 3a9705f141af1da221961b5d5a67288bc8e4bcbd

2020-10-18 Thread Mosè Giordano
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 tag, release_12_3 has been created
at  3a9705f141af1da221961b5d5a67288bc8e4bcbd (commit)

- Log -
commit 3a9705f141af1da221961b5d5a67288bc8e4bcbd
Author: Mosè Giordano 
Date:   Sun Oct 18 19:04:06 2020 +0100

; Release_12.3
---


hooks/post-receive
-- 
GNU AUCTeX

___
auctex-diffs mailing list
auctex-di...@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex-diffs


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

2020-10-18 Thread Mosè Giordano
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  ec4060edb52c64fe2ae47464ad74081bfe000937 (commit)
   via  3a9705f141af1da221961b5d5a67288bc8e4bcbd (commit)
   via  dc09dbcc86ea66e4dcbcf154932bbdc2e276681e (commit)
  from  869f43f9100a069719274c8a3986801e7856bb09 (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 ec4060edb52c64fe2ae47464ad74081bfe000937
Author: Mosè Giordano 
Date:   Sun Oct 18 21:31:58 2020 +0100

; Some improvements to release instructions

* admin/release-process.org (Website [0/6]): Add some tips about dealing 
with
  the CVS repository.

diff --git a/admin/release-process.org b/admin/release-process.org
index 4807855..ea87618 100644
--- a/admin/release-process.org
+++ b/admin/release-process.org
@@ -57,8 +57,8 @@ checkout the repository locally should be
   cvs -z3 -d:ext:your_user_n...@cvs.savannah.gnu.org:/web/auctex co auctex
 #+END_SRC
 
-For this to work, you also need to have the environment variable =CVS_RSH= set
-to =ssh=:
+In order to access the 
[[http://web.cvs.savannah.gnu.org/viewvc/auctex/auctex/][remote CVS 
repository]], you also need to have the
+environment variable =CVS_RSH= set to =ssh=:
 
 #+BEGIN_SRC sh
   export CVS_RSH=ssh
@@ -79,7 +79,27 @@ You can also browse the 
[[http://web.cvs.savannah.gnu.org/viewvc/auctex/][conten
 - [ ] Register all changes. You can use for example =vc-mode= in Emacs: [0/2]
 
   - [ ] Register all new files with =i=
-  - [ ] Select all files and do check in/out with =v=
+  - [ ] Select all files in the same state with =m= and do check in/out with 
=v=
+  - [ ] To delete files not needed anymore I don’t know a better way than
+deleting them on disk, then manually running the command =cvs remove= in 
the
+local repository and then in =vc-mode= select all files marked as "removed"
+with =m= and make the change effective with =v=
+
+Simple shell commands to help replacing the old files with the new ones:
+
+#+BEGIN_SRC sh
+# Set these variables
+AUCTEX_DIR=""
+AUCTEX_WEBPAGES_DIR=""
+
+rm "${AUCTEX_WEBPAGES_DIR}"/manual/{auctex,preview-latex}.* \
+   "${AUCTEX_WEBPAGES_DIR}"/manual/auctex/*.html \
+   "${AUCTEX_WEBPAGES_DIR}"/manual/preview-latex/*.html
+
+cp "${AUCTEX_DIR}"/auctex-dist/www/manual/manual/{auctex,preview-latex}.* 
"${AUCTEX_WEBPAGES_DIR}"/manual/.
+cp "${AUCTEX_DIR}"/auctex-dist/www/manual/manual/auctex/* 
"${AUCTEX_WEBPAGES_DIR}"/manual/auctex/.
+cp "${AUCTEX_DIR}"/auctex-dist/www/manual/manual/preview-latex/* 
"${AUCTEX_WEBPAGES_DIR}"/manual/preview-latex/.
+#+END_src
 
 ** =preview= package to CTAN
 

commit 3a9705f141af1da221961b5d5a67288bc8e4bcbd
Author: Mosè Giordano 
Date:   Sun Oct 18 19:04:06 2020 +0100

; Release_12.3

diff --git a/ChangeLog-preview b/ChangeLog-preview
index 0096f55..6a89713 100644
--- a/ChangeLog-preview
+++ b/ChangeLog-preview
@@ -1,3 +1,7 @@
+2020-10-18  Mosè Giordano  
+
+   * Version 12.3 released.
+
 2019-10-30  Mosè Giordano  
 
* Version 12.2 released.
diff --git a/ChangeLog.1 b/ChangeLog.1
index 5ce2261..830d036 100644
--- a/ChangeLog.1
+++ b/ChangeLog.1
@@ -1,5 +1,9 @@
 2020-10-18  Mosè Giordano  
 
+   * Version 12.3 released.
+
+2020-10-18  Mosè Giordano  
+
Mark default argument to `LaTeX-arg-polyglossia-lang' as optional
 
* style/polyglossia.el (LaTeX-arg-polyglossia-lang): The `default' 
argument

commit dc09dbcc86ea66e4dcbcf154932bbdc2e276681e
Author: Mosè Giordano 
Date:   Sun Oct 18 19:02:58 2020 +0100

; make change-history-commit

diff --git a/ChangeLog.1 b/ChangeLog.1
index 3bfa41b..5ce2261 100644
--- a/ChangeLog.1
+++ b/ChangeLog.1
@@ -1,3 +1,887 @@
+2020-10-18  Mosè Giordano  
+
+   Mark default argument to `LaTeX-arg-polyglossia-lang' as optional
+
+   * style/polyglossia.el (LaTeX-arg-polyglossia-lang): The `default' 
argument
+ isn't currently used, mark it as ignored.
+
+2020-10-10  Mosè Giordano  
+
+   Prepare for upcoming release
+
+2020-08-28  Ikumi Keita  
+
+   Simplify mode line for emacs 27
+
+   * tex-buf.el: Don't add an entry in `minor-mode-alist' for
+   `compilation-in-progress'. In emacs 27, compile.el adds a similar
+   entry in `mode-line-modes'.
+
+2020-08-17  Ikumi Keita  
+
+   Fix document
+
+   * doc/auctex.texi (Fontification of math): Delete incorrect
+   description.
+
+2020-08-02  Ikumi Keita  
+
+   Restore all math environments in texmathp.el
+
+   * texmathp.el (texmathp-tex-commands-default): Restore all math
+   environments from style files. The idea to update t-t-c-d by style
+   files afterwards fails when texmathp is u

[AUCTeX-commit] GNU AUCTeX branch, master, updated. ec4060edb52c64fe2ae47464ad74081bfe000937

2020-10-18 Thread Mos� Giordano
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  ec4060edb52c64fe2ae47464ad74081bfe000937 (commit)
   via  3a9705f141af1da221961b5d5a67288bc8e4bcbd (commit)
   via  dc09dbcc86ea66e4dcbcf154932bbdc2e276681e (commit)
  from  869f43f9100a069719274c8a3986801e7856bb09 (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 ec4060edb52c64fe2ae47464ad74081bfe000937
Author: Mosè Giordano 
Date:   Sun Oct 18 21:31:58 2020 +0100

; Some improvements to release instructions

* admin/release-process.org (Website [0/6]): Add some tips about dealing 
with
  the CVS repository.

commit 3a9705f141af1da221961b5d5a67288bc8e4bcbd
Author: Mosè Giordano 
Date:   Sun Oct 18 19:04:06 2020 +0100

; Release_12.3

commit dc09dbcc86ea66e4dcbcf154932bbdc2e276681e
Author: Mosè Giordano 
Date:   Sun Oct 18 19:02:58 2020 +0100

; make change-history-commit

---

Summary of changes:
 ChangeLog-preview |   4 +
 ChangeLog.1   | 890 +-
 admin/release-process.org |  26 +-
 3 files changed, 916 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX

___
auctex-commit mailing list
auctex-com...@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex-commit


[AUCTeX-commit] GNU AUCTeX tag, release_12_3, created. 3a9705f141af1da221961b5d5a67288bc8e4bcbd

2020-10-18 Thread Mos� Giordano
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 tag, release_12_3 has been created
at  3a9705f141af1da221961b5d5a67288bc8e4bcbd (commit)

- Log -
commit 3a9705f141af1da221961b5d5a67288bc8e4bcbd
Author: Mosè Giordano 
Date:   Sun Oct 18 19:04:06 2020 +0100

; Release_12.3
---


hooks/post-receive
-- 
GNU AUCTeX

___
auctex-commit mailing list
auctex-com...@gnu.org
https://lists.gnu.org/mailman/listinfo/auctex-commit