Re: A lot of warning tex.el and latex.el and font-latex.el and ...

2023-09-28 Thread Janusz S . Bień
On Thu, Sep 28 2023 at 12:15 -03, Marcelo Laia wrote:
> Hi Ikumi,
>
> Thank you so much!
>
> I filled a bug on Debian Bug Tracking.
>
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1053161
>
> Thank you!
>
> Marcelo Laia
>
> Enviado a partir de dispositivo móvel
> -- next part --
> An HTML attachment was scrubbed...
> URL: 
> 

Install from ELPA?

Regards

JSB

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



Re: After Debian upgrade labels not created

2023-08-05 Thread Janusz S . Bień
On Sat, Aug 05 2023 at 13:54 +02, Arash Esbati wrote:
> Janusz S. Bień  writes:
>
>> The new version is just listed in a long list of available packages, and
>> the old one (if I remember well) just as installed. I would prefer to
>> have the installed but upgradable packages listed explicitely.
>
> After 'M-x list-packages RET', hit '/ u' which runs:
>
> ,[ C-h f package-menu-filter-upgradable RET ]
> | package-menu-filter-upgradable is an interactive native-compiled Lisp
> | function in ‘package.el’.
> | 
> | (package-menu-filter-upgradable)
> | 
> | Filter "*Packages*" buffer to show only upgradable packages.
> | 
> `
>
> From the manual[1]
>
>   / u
>
> Filter package list to show only packages for which there are
> available upgrades (package-menu-filter-upgradable).  By default,
> this filter excludes the built-in packages for which a newer version
> is available, but customizing `package-install-upgrade-built-in' can
> change that.

Thanks again!

Janusz

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



Re: After Debian upgrade labels not created

2023-08-05 Thread Janusz S . Bień
On Sat, Aug 05 2023 at 11:41 +02, Arash Esbati wrote:
> Janusz S. Bień  writes:
>
>> On Sat, Aug 05 2023 at 10:43 +02, Arash Esbati wrote:
>>>
>>> M?ELPA packages are controlled by Emacs, 'M-x list-packages RET' should
>>> give a clue.
>>
>> The clue could be more explicit...
>
> I'm not sure if I get this.  Do you expect that your distro updates
> packages installed by Emacs?

The new version is just listed in a long list of available packages, and
the old one (if I remember well) just as installed. I would prefer to
have the installed but upgradable packages listed explicitely.

Best regards

Janusz

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



Re: After Debian upgrade labels not created

2023-08-05 Thread Janusz S . Bień
On Sat, Aug 05 2023 at 18:16 +09, Ikumi Keita wrote:
> Hi Janusz,
>
>>>>>> Janusz S. Bień  writes:
>> I don't know how to load AUCTeX with "emacs -Q".
>
> Good question. You'll find an instruction in Tassilo's message:
> https://lists.gnu.org/r/auctex/2023-07/msg00016.html

Thanks!

>
>> BTW, looks like when creating labels AUCTeX skips non-ASCII characters,
>> so you get something like
>
>> \subsection{Żółć}
>> \label{sec:o}
>
>> I can live with it, but I'm curious whether you are aware of it.
>
> RefTeX still sticks to older LaTeX rules. I think you can override it by
> (setq reftex-label-illegal-re "[^-a-zA-Z0-9_+=:;,.[:multibyte:]]")
> in your init file.

Thanks!

For Polish a simpler regex proposed by Arash works, but it is good to
learn there is such thing as [:multibyte:] :-)

Best regards

Janusz

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



Re: After Debian upgrade labels not created

2023-08-05 Thread Janusz S . Bień
On Sat, Aug 05 2023 at 10:43 +02, Arash Esbati wrote:
> Janusz S. Bień  writes:
>
>> I mean upgrage to Debian 12 (bookworm)
>
> Ah, Ok.
>
>> Yes. I've installed it from ELPA and was not aware it's not upgraded
>> automatically.
>
> M?ELPA packages are controlled by Emacs, 'M-x list-packages RET' should
> give a clue.

The clue could be more explicit...

>
>> I don't know how to load AUCTeX with "emacs -Q".
>
> The procedure is:
>
>   • emacs -Q
>   • M-x package-initialize RET
>
> which activates all your packages.  Or
>
>   • emacs -Q
>   • M-: (progn (package-initialize t) (package-activate 'auctex)) RET
>
> to activate AUCTeX only.

Thanks!

>
>> Anyway I'm unable now to reproduce the problem.
>
> Problem solved ;-)

I hope so :-)

>
>> BTW, looks like when creating labels AUCTeX skips non-ASCII characters,
>> so you get something like
>>
>> \subsection{Żółć}
>> \label{sec:o}
>>
>> I can live with it, but I'm curious whether you are aware of it.
>
> Automatic insertion of labels is done by RefTeX and this particular
> behavior is controlled by the variable `reftex-label-illegal-re':
>
> ,[ C-h v reftex-label-illegal-re RET ]
> | reftex-label-illegal-re is a variable defined in ‘reftex-vars.el’.
> | 
> | Its value is "[^-a-zA-Z0-9_+=:;,.]"
> | 
> | Regexp matching characters not valid in labels.
> | 
> |   You can customize this variable.
> | 
> `
>
> which means ignore non-ASCII chars.  You can try to set it to something
> like this and see if it works:
>
>   (setq reftex-label-illegal-re "[^-[:alnum:]_+=:;,.]")

Yes, it works! Thank you very much!

Best regards

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



Re: After Debian upgrade labels not created

2023-08-04 Thread Janusz S . Bień
On Fri, Aug 04 2023 at 19:14 +02, Arash Esbati wrote:
> Janusz S. Bień  writes:
>
>> I got systematically an error, cf.
>>
>> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1042874
>
> I'm not on Debian, but what does it mean that after a recent upgrade,

I mean upgrage to Debian 12 (bookworm)

> you have:
>
>   Version: 12.2-1
>
> Is it that you now have AUCTeX 12.2?

Yes. I've installed it from ELPA and was not aware it's not upgraded
automatically.

If so, that version was released
> in October 2019[1].
>
> I suggest you delete that version, install AUCTeX from ELPA as described
> here[2] and come up with a recipe to reproduce the issue starting with
> "emacs -Q".

Thanks for the suggestion.

I don't know how to load AUCTeX with "emacs -Q".

Anyway I'm unable now to reproduce the problem.

BTW, looks like when creating labels AUCTeX skips non-ASCII characters,
so you get something like

\subsection{Żółć}
\label{sec:o}

I can live with it, but I'm curious whether you are aware of it.

Best regards

Janusz

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



After Debian upgrade labels not created

2023-08-02 Thread Janusz S . Bień
Hi!

I got systematically an error, cf.

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1042874

Regards

JSB

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



Re: Encoding trouble

2022-02-01 Thread Janusz S . Bień
On Tue, Feb 01 2022 at 12:08 +01, Arash Esbati wrote:
> Denis Bitouzé  writes:
>
>> several years ago, I already faced the following problem and,
>> unfortunately, it happened again yesterday, which made me lose quite
>> some time.
>>
>> Let me explain myself: I had a LaTeX file encoded in latin1 that
>> I wanted to encode in UTF-8. I used an external tool, in this case
>> `utrac`,
>
> I think Emacs got upset because it saw you used an external tool --
> hence the punishment 

What about local variables?

All my files have

%%% Local Variables: 
%%% coding: utf-8-unix
%%% mode: latex
%%% TeX-master: t
%%% TeX-PDF-mode: t
%%% TeX-engine: xetex
%%% End: 

Regards - Janusz

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



Re: Modernize some defaults?

2020-12-13 Thread Janusz S. Bień
On Sun, Dec 13 2020 at 18:35 +01, yarn...@tutanota.com wrote:
>> DocView in my opinion is cumbersome and slow. I used evince for years
>> but recently it crashed too often, so I switched to okular.
>
> Have you tried pdf-tools? It is really fast and can be used as a drop
> in replacement for DocView.

Now, but I will try.

Janusz

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



Re: Modernize some defaults?

2020-12-13 Thread Janusz S. Bień
On Sat, Dec 12 2020 at 20:14 +01, yarn...@tutanota.com wrote:

[...]

> - TeX-view-program-selection: In Linux, this defaults to
> Evince. Evince is not available in all Linux installations. DocView
> has been built into Emacs for the last few years.

DocView in my opinion is cumbersome and slow. I used evince for years
but recently it crashed too often, so I switched to okular.

Best regards

Janusz

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



bug#43667: 11.91; unable neither to install nor upgrade from ELPA

2020-10-01 Thread Janusz S. Bień
On Tue, Sep 29 2020 at 15:01 +09, Ikumi Keita wrote:
>>>>>> jsb...@mimuw.edu.pl (Janusz S. Bień) writes:
>>>> On Tue, Sep 29 2020 at 13:24 +09, Ikumi Keita wrote:
>>> One possible reason for that is that the gpg key bundled with your emacs
>>> 26.1 has expired. If this is the case, the prescription at
>>> https://elpa.gnu.org/packages/gnu-elpa-keyring-update.html
>>> , followed by installing `gnu-elpa-keyring-update' package from ELPA,
>>> might help.

FYI:

You were right, but fixing it doesn't seem easy:

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=942413

Best regards

Janusz

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



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


no longer able to reproduce (was: "Master file already set" instead of compilation)

2020-09-29 Thread Janusz S. Bień
On Tue, Sep 29 2020 at 13:59 +0530, Mandar Mitra wrote:
> Janusz S. Bień wrote (Mon, Sep 28, 2020 at 03:09:27PM +0200):
>> 
>> Hi!
>> 
>> I'm confused and annoyed by the following problem.
>> 
>> I have two documents with the identical structure: a short master file
>> inputs the actual text. The local variable blocks are analogical.
>> 
>> In one document C-c C-c in the included file works as intended. In the
>> second one it gives the message "Master file already set".
>> 
>> I will appreciate your suggestions how to diagnose the problem.
>
> Until the experts pitch in: can you share the two master files?

Thanks for your interest, however the problem vanished in an as
mysterious way as it appeared.

I've reinstalled auctex, perhaps this helped.

Best regards

Janusz

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



bug#43667: 11.91; unable neither to install nor upgrade from ELPA

2020-09-29 Thread Janusz S. Bień
On Tue, Sep 29 2020 at 15:01 +09, Ikumi Keita wrote:

[...]

> Hmm, sorry, then I have no idea about this problem. Maybe asking on
> help-gnu-emacs list would be better.
> https://lists.gnu.org/mailman/listinfo/help-gnu-emacs

OK

Actually the only reason I wanted to install auctex from ELPA is that I
am curious whether it is possible to reproduce the problem

https://lists.gnu.org/archive/html/auctex/2020-09/msg00017.html

with the recent version of auctex.

Thank you very much for your quick responses.

Best regards

Janusz

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



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


bug#43667: 11.91; unable neither to install nor upgrade from ELPA

2020-09-28 Thread Janusz S. Bień
On Tue, Sep 29 2020 at 14:39 +09, Ikumi Keita wrote:
> Hi Janusz,
>
>>>>>> jsb...@mimuw.edu.pl (Janusz S. Bień) writes:
>> On Tue, Sep 29 2020 at 13:24 +09, Ikumi Keita wrote:
>>> Is this problem specific to auctex or common for other ELPA packages for 
>>> you?
>
>> Contacting host: elpa.gnu.org:443
>> package-install-from-archive: 
>> https://elpa.gnu.org/packages/dired-git-info-0.3.1.el: Bad Request
>
>> I suspect installing from ELPA doesn't work here at all.
>
> One possible reason for that is that the gpg key bundled with your emacs
> 26.1 has expired. If this is the case, the prescription at
> https://elpa.gnu.org/packages/gnu-elpa-keyring-update.html
> , followed by installing `gnu-elpa-keyring-update' package from ELPA,
> might help.

gpg --homedir ~/.emacs.d/elpa/gnupg --receive-keys 066DAFCB81E42C40
gpg: key 066DAFCB81E42C40: "GNU ELPA Signing Agent (2019) 
" not changed
gpg: Total number processed: 1
gpg:  unchanged: 1


In the next attempt I changed package-check-signature to nil, but it
didn't help:

package-install-from-archive: 
https://elpa.gnu.org/packages/gnu-elpa-keyring-update-2019.3.tar: Bad Request

Regards - Janusz

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



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


bug#43667: 11.91; unable neither to install nor upgrade from ELPA

2020-09-28 Thread Janusz S. Bień
On Tue, Sep 29 2020 at 13:24 +09, Ikumi Keita wrote:
> Hi Janusz,
>
>>>>>> jsb...@mimuw.edu.pl (Janusz S. Bień) writes:
>> Install package ‘auctex-12.2.5’? y
>> Contacting host: elpa.gnu.org:443
>> package-install-from-archive: 
>> https://elpa.gnu.org/packages/auctex-12.2.5.tar: Bad Request
>> This is an attempt to upgrade from the version provided by the Debian
>> package, but an attempt to install gives identical results.
>
> This doesn't occur for me. I could install auctex-12.2.5 from ELPA on
> windows10, emacs 26.3.
>
> Is this problem specific to auctex or common for other ELPA packages for you?

Contacting host: elpa.gnu.org:443
package-install-from-archive: 
https://elpa.gnu.org/packages/dired-git-info-0.3.1.el: Bad Request

I suspect installing from ELPA doesn't work here at all.

Regards

Janusz

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



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


"Master file already set" instead of compilation

2020-09-28 Thread Janusz S. Bień


Hi!

I'm confused and annoyed by the following problem.

I have two documents with the identical structure: a short master file
inputs the actual text. The local variable blocks are analogical.

In one document C-c C-c in the included file works as intended. In the
second one it gives the message "Master file already set".

I will appreciate your suggestions how to diagnose the problem.

Best regards

Janusz

Emacs  : GNU Emacs 26.1 (build 2, x86_64-pc-linux-gnu, GTK+ Version 3.24.5)
 of 2019-09-23, modified by Debian
Package: 11.91

current state:
==
(setq
 AUCTeX-date "2017-07-24"
 window-system 'x
 LaTeX-version "2e"
 TeX-style-path '("/var/lib/auctex/emacs/" 
"/usr/share/emacs/site-lisp/auctex/style" "/home/jsbien/.emacs.d/auctex/auto"
  "/home/jsbien/.emacs.d/auctex/style" "auto" "style")
 TeX-auto-save t
 TeX-parse-self t
 TeX-master nil
 TeX-command-list '(("TeX" "%(PDF)%(tex) %(file-line-error) %(extraopts) 
%`%S%(PDFout)%(mode)%' %t" TeX-run-TeX nil
 (plain-tex-mode ams-tex-mode texinfo-mode) :help "Run 
plain TeX")
("LaTeX" "%`%l%(mode)%' %t" TeX-run-TeX nil (latex-mode 
doctex-mode) :help "Run LaTeX")
("Makeinfo" "makeinfo %(extraopts) %t" TeX-run-compile nil 
(texinfo-mode) :help "Run Makeinfo with Info output")
("Makeinfo HTML" "makeinfo %(extraopts) --html %t" 
TeX-run-compile nil (texinfo-mode) :help
 "Run Makeinfo with HTML output")
("AmSTeX" "amstex %(PDFout) %(extraopts) %`%S%(mode)%' %t" 
TeX-run-TeX nil (ams-tex-mode) :help "Run AMSTeX")
("ConTeXt" "%(cntxcom) --once --texutil %(extraopts) 
%(execopts)%t" TeX-run-TeX nil (context-mode) :help
 "Run ConTeXt once")
("ConTeXt Full" "%(cntxcom) %(extraopts) %(execopts)%t" 
TeX-run-TeX nil (context-mode) :help
 "Run ConTeXt until completion")
("BibTeX" "bibtex %s" TeX-run-BibTeX nil t :help "Run 
BibTeX")
("Biber" "biber %s" TeX-run-Biber nil t :help "Run Biber")
("View" "%V" TeX-run-discard-or-function t t :help "Run 
Viewer")
("Print" "%p" TeX-run-command t t :help "Print the file")
("Queue" "%q" TeX-run-background nil t :help "View the 
printer queue" :visible TeX-queue-command)
("File" "%(o?)dvips %d -o %f " TeX-run-dvips t t :help 
"Generate PostScript file")
("Dvips" "%(o?)dvips %d -o %f " TeX-run-dvips nil t :help 
"Convert DVI file to PostScript")
("Dvipdfmx" "dvipdfmx %d" TeX-run-dvipdfmx nil t :help 
"Convert DVI file to PDF with dvipdfmx")
("Ps2pdf" "ps2pdf %f" TeX-run-ps2pdf nil t :help "Convert 
PostScript file to PDF")
("Glossaries" "makeglossaries %s" TeX-run-command nil t 
:help "Run makeglossaries to create glossary file")
("Index" "makeindex %s" TeX-run-index nil t :help "Run 
makeindex to create index file")
("upMendex" "upmendex %s" TeX-run-index t t :help "Run 
upmendex to create index file")
("Xindy" "texindy %s" TeX-run-command nil t :help "Run 
xindy to create index file")
("Check" "lacheck %s" TeX-run-compile nil (latex-mode) 
:help "Check LaTeX file for correctness")
("ChkTeX" "chktex -v6 %s" TeX-run-compile nil (latex-mode) 
:help "Check LaTeX file for common mistakes")
("Spell" "(TeX-ispell-document \"\")" TeX-run-function nil 
t :help "Spell-check the document")
("Clean" "TeX-clean" TeX-run-function nil t :help "Delete 
generated intermediate files")
("Clean All" "(TeX-clean t)" TeX-run-function nil t :help 
"Delete generated intermediate and output files")
("Other" "" TeX-run-command t t :help "Run an arbitrary 
command"))

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien



bug#43667: 11.91; unable neither to install nor upgrade from ELPA

2020-09-28 Thread Janusz S. Bień


--8<---cut here---start->8---
Install package ‘auctex-12.2.5’? y
Contacting host: elpa.gnu.org:443
package-install-from-archive: https://elpa.gnu.org/packages/auctex-12.2.5.tar: 
Bad Request
--8<---cut here---end--->8---

This is an attempt to upgrade from the version provided by the Debian
package, but an attempt to install gives identical results.

Please forward/reassign as appropriate.

Best regards - Janusz




Emacs  : GNU Emacs 26.1 (build 2, x86_64-pc-linux-gnu, GTK+ Version 3.24.5)
 of 2019-09-23, modified by Debian
Package: 11.91

current state:
==
(setq
 AUCTeX-date "2017-07-24"
 window-system 'x
 LaTeX-version "2e"
 TeX-style-path '("/var/lib/auctex/emacs/" 
"/usr/share/emacs/site-lisp/auctex/style" "/home/jsbien/.emacs.d/auctex/auto"
  "/home/jsbien/.emacs.d/auctex/style" "auto" "style")
 TeX-auto-save t
 TeX-parse-self t
 TeX-master nil
 TeX-command-list '(("TeX" "%(PDF)%(tex) %(file-line-error) %(extraopts) 
%`%S%(PDFout)%(mode)%' %t" TeX-run-TeX nil
 (plain-tex-mode ams-tex-mode texinfo-mode) :help "Run 
plain TeX")
("LaTeX" "%`%l%(mode)%' %t" TeX-run-TeX nil (latex-mode 
doctex-mode) :help "Run LaTeX")
("Makeinfo" "makeinfo %(extraopts) %t" TeX-run-compile nil 
(texinfo-mode) :help "Run Makeinfo with Info output")
("Makeinfo HTML" "makeinfo %(extraopts) --html %t" 
TeX-run-compile nil (texinfo-mode) :help
 "Run Makeinfo with HTML output")
("AmSTeX" "amstex %(PDFout) %(extraopts) %`%S%(mode)%' %t" 
TeX-run-TeX nil (ams-tex-mode) :help "Run AMSTeX")
("ConTeXt" "%(cntxcom) --once --texutil %(extraopts) 
%(execopts)%t" TeX-run-TeX nil (context-mode) :help
 "Run ConTeXt once")
("ConTeXt Full" "%(cntxcom) %(extraopts) %(execopts)%t" 
TeX-run-TeX nil (context-mode) :help
 "Run ConTeXt until completion")
("BibTeX" "bibtex %s" TeX-run-BibTeX nil t :help "Run 
BibTeX")
("Biber" "biber %s" TeX-run-Biber nil t :help "Run Biber")
("View" "%V" TeX-run-discard-or-function t t :help "Run 
Viewer")
("Print" "%p" TeX-run-command t t :help "Print the file")
("Queue" "%q" TeX-run-background nil t :help "View the 
printer queue" :visible TeX-queue-command)
("File" "%(o?)dvips %d -o %f " TeX-run-dvips t t :help 
"Generate PostScript file")
("Dvips" "%(o?)dvips %d -o %f " TeX-run-dvips nil t :help 
"Convert DVI file to PostScript")
("Dvipdfmx" "dvipdfmx %d" TeX-run-dvipdfmx nil t :help 
"Convert DVI file to PDF with dvipdfmx")
("Ps2pdf" "ps2pdf %f" TeX-run-ps2pdf nil t :help "Convert 
PostScript file to PDF")
("Glossaries" "makeglossaries %s" TeX-run-command nil t 
:help "Run makeglossaries to create glossary file")
("Index" "makeindex %s" TeX-run-index nil t :help "Run 
makeindex to create index file")
("upMendex" "upmendex %s" TeX-run-index t t :help "Run 
upmendex to create index file")
("Xindy" "texindy %s" TeX-run-command nil t :help "Run 
xindy to create index file")
("Check" "lacheck %s" TeX-run-compile nil (latex-mode) 
:help "Check LaTeX file for correctness")
("ChkTeX" "chktex -v6 %s" TeX-run-compile nil (latex-mode) 
:help "Check LaTeX file for common mistakes")
("Spell" "(TeX-ispell-document \"\")" TeX-run-function nil 
t :help "Spell-check the document")
("Clean" "TeX-clean" TeX-run-function nil t :help "Delete 
generated intermediate files")
("Clean All" "(TeX-clean t)" TeX-run-function nil t :help 
"Delete generated intermediate and output files")
("Other" "" TeX-run-command t t :help "Run an arbitrary 
command"))
 )
-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien




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


[AUCTeX-devel] PUA characters in Emacs/AUCTeX

2019-05-27 Thread Janusz S. Bień

Hi!

I've just subscribed to this list to ask you for an opinion about my
feature request:

https://debbugs.gnu.org/cgi/bugreport.cgi?bug=32599
https://groups.google.com/forum/#!msg/gnu.emacs.bug/SK-RO_OG_GQ/BmUzA-23AgAJ

Unfortunately at these addresses you can find only old posts, without the
recent live exchange of mails with Eli Zaretskii. I quote below the most
important fragments of them.

On Sun, May 26 2019 at 10:10 +02, Janusz S. Bień wrote:

[...]

> If you prefer a file pattern after UnicodeData.txt, you can find it
> here:
>
> http://www.kreativekorp.com/charset/PUADATA/PUBLIC/MUFI/

On Mon, May 27 2019 at  7:48 +02, Janusz S. Bień wrote:
> On Sun, May 26 2019 at 21:52 +03, Eli Zaretskii wrote:
>
> [...]
>
>> Personally, I'm surprised people use PUA for
>> these purposes,
>
> Which purposes? Cf.
>
> https://en.wikipedia.org/wiki/Private_Use_Areas
> http://www.kreativekorp.com/charset/PUADATA/
> http://bit.ly/2XVTzRL-LINCUA
>
>> and even more surprised they expect Emacs to support
>> this.  But that's me.
>
> PUA characters, especially MUFI, are needed to typeset some
> texts. (XeLa)TeX is still a very good typesetting system and Emacs-based
> AUCTeX is still a very good tool to use TeX.

On Mon, May 27 2019 at 19:39 +02, Janusz S. Bień wrote:
> On Mon, May 27 2019 at 20:11 +03, Eli Zaretskii wrote:

[...]

>> Asking Emacs to maintain compatibility to various ad-hoc registries
>> outside of Unicode is not really reasonable.
>
> Yes, but it is not what I propose. I just would like the user to be able to
> use his own definition of PUA provided in the form of an additional
> UnicodeData.txt (not necessarily as a part of Unicode, it can be perhaps
> a different coding system).

Actually Eli Zaretskii made also some interesting comments about how Unicode
support is implemented, I can forward them too if you are interested.

If you think this is outside you scope of interest, just let me know.

Thank you for your work on AUCTeX.

Best regards

Janusz

-- 
 ,   
Janusz S. Bien
emeryt (emeritus)
https://sites.google.com/view/jsbien

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


Re: [AUCTeX] TeX-next-error doesn't work

2018-02-23 Thread Janusz S. Bień
On Fri, Feb 23 2018 at 11:57 +0100, ar...@gnu.org writes:
> jsb...@mimuw.edu.pl (Janusz S. Bień) writes:
>
>> When I try to use TeX-next-error, I get
>>
>> TeX-parse-TeX: Symbol's function definition is void: signum
>>
>> It's version 11.89.5 on
>> GNU Emacs 24.5.1 (x86_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-12 
>> on hullmann, modified by Debian
>
> Hi Janusz,
>
> this issue was fixed in AUCTeX with this patch[1].  Just update your
> AUCTeX and try again.
>
> Best, Arash
>
> Footnotes: 
> [1]  
> http://git.savannah.gnu.org/cgit/auctex.git/commit/tex-buf.el?id=9e627fc8d7b744dd5342cf3e0e76de67fa0eb9be

Thanks! By mistake I've sent last mail only to David:

On Fri, Feb 23 2018 at 10:49 +0100, jsb...@mimuw.edu.pl writes:
> On Fri, Feb 23 2018 at 10:32 +0100, d...@gnu.org writes:
>
> [...]
>
>> Your complaint would have been valid even when using 24.  I do think
>> that your problem has already been fixed in current AUCTeX versions: at
>> least I can find no active use of signum.
>
> Right, it works in the current version.
>
> Thanks!
>
> Janusz

-- 
   ,   
Prof. dr hab. Janusz S. Bien -  Uniwersytet Warszawski (Katedra Lingwistyki 
Formalnej)
Prof. Janusz S. Bien - University of Warsaw (Formal Linguistics Department)
jsb...@uw.edu.pl, jsb...@mimuw.edu.pl, http://fleksem.klf.uw.edu.pl/~jsbien/

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


Re: [AUCTeX] TeX-next-error doesn't work

2018-02-23 Thread Janusz S. Bień
On Fri, Feb 23 2018 at  9:52 +0100, d...@gnu.org writes:
> jsb...@mimuw.edu.pl (Janusz S. Bień) writes:
>
>> Hi!
>>
>> When I try to use TeX-next-error, I get
>>
>> TeX-parse-TeX: Symbol's function definition is void: signum
>>
>> It's version 11.89.5 on
>> GNU Emacs 24.5.1 (x86_64-pc-linux-gnu, GTK+ Version 3.22.11) of
>> 2017-09-12 on hullmann, modified by Debian
>
> 24.5?  25 came out in 2014.

I was not aware that the upgrade in Debian from 24 to 25 is not
automatic. Now I have

GNU Emacs 25.1.1 (x86_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-15, 
modified by Debian

The upgrade has not affected the AUCTex version, it is still 11.89.5. If
I remember well, I've installed it from ELPA.

The problem still occurs.

> That being said, our prerequisites in doc/install.texi do list Emacs 24
> as requirement.

So?

Best regards

Janusz

-- 
   ,   
Prof. dr hab. Janusz S. Bien -  Uniwersytet Warszawski (Katedra Lingwistyki 
Formalnej)
Prof. Janusz S. Bien - University of Warsaw (Formal Linguistics Department)
jsb...@uw.edu.pl, jsb...@mimuw.edu.pl, http://fleksem.klf.uw.edu.pl/~jsbien/

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


[AUCTeX] TeX-next-error doesn't work

2018-02-23 Thread Janusz S. Bień

Hi!

When I try to use TeX-next-error, I get

TeX-parse-TeX: Symbol's function definition is void: signum

It's version 11.89.5 on
GNU Emacs 24.5.1 (x86_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-09-12 on 
hullmann, modified by Debian

Best regards

Janusz

-- 
   ,   
Prof. dr hab. Janusz S. Bien -  Uniwersytet Warszawski (Katedra Lingwistyki 
Formalnej)
Prof. Janusz S. Bien - University of Warsaw (Formal Linguistics Department)
jsb...@uw.edu.pl, jsb...@mimuw.edu.pl, http://fleksem.klf.uw.edu.pl/~jsbien/

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


Re: [AUCTeX] old evince problem - evince aborts after a few seconds without an error message

2016-11-19 Thread Janusz S. Bień
On Sat, Nov 19 2016 at 22:23 CET, d...@gnu.org writes:
> Mosè Giordano  writes:

[...]

>> Doesn't setting the environment variable in your .bashrc file or so
>> work?  I don't think you have to do something special within Emacs.
>
> Anything wrong with
>
> M-x setenv RET
>
> here?

Thanks! There is still a lot of functions of Emacs I'm not aware of :-)

Best regards

Janusz

-- 
   ,   
Prof. dr hab. Janusz S. Bien -  Uniwersytet Warszawski (Katedra Lingwistyki 
Formalnej)
Prof. Janusz S. Bien - University of Warsaw (Formal Linguistics Department)
jsb...@uw.edu.pl, jsb...@mimuw.edu.pl, http://fleksem.klf.uw.edu.pl/~jsbien/

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


[AUCTeX] old evince problem - evince aborts after a few seconds without an error message

2016-11-18 Thread Janusz S. Bień
On Wed, Dec 30 2015 at  7:47 CET, jsb...@mimuw.edu.pl writes:
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809388

[...]


On Fri, Nov 18 2016 at 21:50 CET, ja...@inspiresomeone.us writes:
> Control: tags -1 - moreinfo unreproducible
>
> On Wed, Nov 16, 2016 at 05:20:52PM +0100, Janusz S. Bień wrote:
>> Another crash,  still a not typical one:
>
> I might have found what's causing it.  Try setting environment variable
> G_SLICE=always-malloc before evince runs and see if that stops the
> crashes.

How to set the variable for evince started by AUC-TeX?

Best regards

Janusz

-- 
   ,   
Prof. dr hab. Janusz S. Bien -  Uniwersytet Warszawski (Katedra Lingwistyki 
Formalnej)
Prof. Janusz S. Bien - University of Warsaw (Formal Linguistics Department)
jsb...@uw.edu.pl, jsb...@mimuw.edu.pl, http://fleksem.klf.uw.edu.pl/~jsbien/

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


[AUCTeX] FYI: old evince problem

2015-12-29 Thread Janusz S. Bień

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=809388

Best regards and Happy New Year

Janusz

-- 
   ,   
Prof. dr hab. Janusz S. Bien -  Uniwersytet Warszawski (Katedra Lingwistyki 
Formalnej)
Prof. Janusz S. Bien - University of Warsaw (Formal Linguistics Department)
jsb...@uw.edu.pl, jsb...@mimuw.edu.pl, http://fleksem.klf.uw.edu.pl/~jsbien/

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


Re: [AUCTeX] Where and how TeX-evince-sync-view is defined?

2015-05-11 Thread Janusz S. Bień
On Mon, May 11 2015 at 12:15 CEST, jsb...@mimuw.edu.pl writes:
 Quote/Cytat - Mosè Giordano m...@gnu.org (Mon 11 May 2015 11:52:19 AM CEST):


 Some non-standard fonts (Cardo, Parkosz) are required in order to
 compile that document.  Could you please provide a _minimal_ working
 example?

 I've uploaded the file smallParkosz.tex not depending on the fonts
 mentioned and a surprise - the problem vanished! At least I'm unable
 to reproduce it now.

I've also installed Debian update. Perhaps this is the reason I'm unable
to reproduce the problem, even on the original file!

[...]


On Mon, May 11 2015 at 12:21 CEST, j...@free.fr writes:
 Le 11 mai 2015 à 12:15, Janusz S. Bien jsb...@mimuw.edu.pl a écrit :

 Cardo is a widely used font available 
 athttp://scholarsfonts.net/cardofnt.html (it's author is unfortunately 
 missing in action, for several years nobody managed to contact him).

 as an aside: there is fbb package on CTAN

 http://www.ctan.org/pkg/fbb
 which is included in TeXLive
 package: fbb
 category:Package
 shortdesc:   A free Bembo-like font.
 longdesc: The package provides a Bembo-like font package based on
 Cardo but with many modifications, adding Bold Italic, small caps in
 all styles, six figure choices in all styles, updated kerning tables,
 added figure tables and corrected f-ligatures. Both OpenType and Adobe
 Type 1 versions are provided; all necessary support files are
 provided. The font works well with newtxmath's libertine option.

Thanks for the info.

Unfortunately it is missing at least some characters present in Cardo
which I use in the document, such as TIRONIAN SIGN ET, LATIN SMALL
LETTER CON etc.

Best regards

Janusz


-- 
   ,   
Prof. dr hab. Janusz S. Bien -  Uniwersytet Warszawski (Katedra Lingwistyki 
Formalnej)
Prof. Janusz S. Bien - University of Warsaw (Formal Linguistics Department)
jsb...@uw.edu.pl, jsb...@mimuw.edu.pl, http://fleksem.klf.uw.edu.pl/~jsbien/

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