auctex
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [AUCTeX] A problem with \parencite and fill-paragraph


From: Ikumi Keita
Subject: Re: [AUCTeX] A problem with \parencite and fill-paragraph
Date: Fri, 31 Mar 2017 21:06:09 +0900

Sorry, I should have thought more flexibly.

>>>>> Ikumi Keita <address@hidden> writes:

> So I propose to change the `concat' part like this:
>     (concat (regexp-quote TeX-esc) "\\(?:"
>             (regexp-opt cmds "\\(?:")
>             "\\b"
>             "\\|"
>             (regexp-opt symbs "\\(?:")
>             "\\)")

The second `regexp-opt' does not require the optional argument.  Just
    (concat (regexp-quote TeX-esc) "\\(?:"
            (regexp-opt cmds "\\(?:")
            "\\b"
            "\\|"
            (regexp-opt symbs)
            "\\)")
would be sufficient.

Best,
Ikumi Keita



reply via email to

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