Re: Failed to skip from chapter tex file to master pdf file.

2021-07-12 Thread Hongyi Zhao
On Mon, Jul 12, 2021 at 7:15 PM David Kastrup wrote: > > Hongyi Zhao writes: > > > On Mon, Jul 12, 2021 at 6:31 PM Tassilo Horn wrote: > >> > >> Hongyi Zhao writes: > >> > >> >> (delq nil '(nil 1 nil)) ;=> (1) > >> >> (delq nil '(nil nil nil)) ;=> nil, aka, the empty list () > >> >> (eq nil

Re: Failed to skip from chapter tex file to master pdf file.

2021-07-12 Thread David Kastrup
Hongyi Zhao writes: > On Mon, Jul 12, 2021 at 6:31 PM Tassilo Horn wrote: >> >> Hongyi Zhao writes: >> >> >> (delq nil '(nil 1 nil)) ;=> (1) >> >> (delq nil '(nil nil nil)) ;=> nil, aka, the empty list () >> >> (eq nil '()) ;=> t >> > >> > Got it. The `nil' shown in my example just means the

Re: Failed to skip from chapter tex file to master pdf file.

2021-07-12 Thread Hongyi Zhao
On Mon, Jul 12, 2021 at 6:31 PM Tassilo Horn wrote: > > Hongyi Zhao writes: > > >> (delq nil '(nil 1 nil)) ;=> (1) > >> (delq nil '(nil nil nil)) ;=> nil, aka, the empty list () > >> (eq nil '()) ;=> t > > > > Got it. The `nil' shown in my example just means the empty result list > > (). The

Re: Failed to skip from chapter tex file to master pdf file.

2021-07-12 Thread Tassilo Horn
Hongyi Zhao writes: >> (delq nil '(nil 1 nil)) ;=> (1) >> (delq nil '(nil nil nil)) ;=> nil, aka, the empty list () >> (eq nil '()) ;=> t > > Got it. The `nil' shown in my example just means the empty result list > (). The `nil' in itself can be used in different context, when it's > used as

Re: Failed to skip from chapter tex file to master pdf file.

2021-07-12 Thread Hongyi Zhao
On Mon, Jul 12, 2021 at 3:46 PM Tassilo Horn wrote: > > Hongyi Zhao writes: > >> (delq nil (mapcar (lambda (buf) > >> (with-current-buffer buf > >> (when (eq major-mode 'LaTeX-mode) > >> (cons (buffer-file-name buf) > >>

Font lock is slow for large doctex document

2021-07-12 Thread Ikumi Keita
Hi all, Now font lock operation slows down significantly in a buffer of large doctex document, at least on machines with somewhat poor CPU power. [How to confirm] 1. Open "latex/preview.dtx" in AUCTeX distribution, with font lock enabled. 2. Type C-v or PageDown repeatedly. 3. As you approach

Re: Failed to skip from chapter tex file to master pdf file.

2021-07-12 Thread Tassilo Horn
Hongyi Zhao writes: >> (delq nil (mapcar (lambda (buf) >> (with-current-buffer buf >> (when (eq major-mode 'LaTeX-mode) >> (cons (buffer-file-name buf) >> (TeX-master-file "pdf") >>

Re: Failed to skip from chapter tex file to master pdf file.

2021-07-12 Thread Hongyi Zhao
On Mon, Jul 12, 2021 at 8:25 AM Hongyi Zhao wrote: > > On Mon, Jul 12, 2021 at 8:21 AM Hongyi Zhao wrote: > > > > On Mon, Jul 12, 2021 at 3:19 AM Tassilo Horn wrote: > > > > > > Hongyi Zhao writes: > > > > > > >> > ``` > > > >> > epdfinfo: Error opening > > > >> >

Re: Cleaning up temporal markers

2021-07-12 Thread Ikumi Keita
Hi all, I've pushed the change in the git repository, with fix of wrong position of `set-marker' in dinbrief.el. Please send back feedbacks if you encounter any troubles. Regards, Ikumi Keita

[AUCTeX-diffs] GNU AUCTeX branch, master, updated. 4a0bfe342160c7935159b37a5ffbf99cd0f3a21d

2021-07-12 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, master has been updated via 4a0bfe342160c7935159b37a5ffbf99cd0f3a21d (commit) from

Re: Failed to skip from chapter tex file to master pdf file.

2021-07-12 Thread Hongyi Zhao
On Mon, Jul 12, 2021 at 2:10 PM Tassilo Horn wrote: > > Hongyi Zhao writes: > > > Sorry for my misunderstanding. Really, it can pinpoint the problem: > > > > (delq nil (mapcar (lambda (buf) > > (with-current-buffer buf > > (when (eq major-mode

Re: Failed to skip from chapter tex file to master pdf file.

2021-07-12 Thread Tassilo Horn
Hongyi Zhao writes: > Sorry for my misunderstanding. Really, it can pinpoint the problem: > > (delq nil (mapcar (lambda (buf) > (with-current-buffer buf > (when (eq major-mode 'latex-mode) > (cons (buffer-file-name buf) >