emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#37124: closed (Lisp snippet for TeX-electric-math


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#37124: closed (Lisp snippet for TeX-electric-math in manual)
Date: Thu, 22 Aug 2019 22:33:01 +0000

Your message dated Fri, 23 Aug 2019 00:20:29 +0200
with message-id <address@hidden>
and subject line Re: bug#37124: Lisp snippet for TeX-electric-math in manual
has caused the debbugs.gnu.org bug report #37124,
regarding Lisp snippet for TeX-electric-math in manual
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
37124: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=37124
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: Lisp snippet for TeX-electric-math in manual Date: Tue, 20 Aug 2019 22:53:11 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50
Hi all,

there is a lisp snippet in the manual for `TeX-electric-math'[1]:

    (add-hook 'plain-TeX-mode-hook
              (lambda () (set (make-variable-buffer-local 'TeX-electric-math)
                              (cons "$" "$"))))
    (add-hook 'LaTeX-mode-hook
              (lambda () (set (make-variable-buffer-local 'TeX-electric-math)
                              (cons "\\(" "\\)"))))

`make-variable-buffer-local' seems wrong to me, I think
`make-local-variable' is the intended function.  Am I missing something?
Otherwise I'd install the following patch:

--8<---------------cut here---------------start------------->8---
diff --git a/doc/auctex.texi b/doc/auctex.texi
index 693fdf6b..cb257572 100644
--- a/doc/auctex.texi
+++ b/doc/auctex.texi
@@ -459,10 +459,10 @@ and @samp{\(...\)} in @LaTeX{} files by pressing @kbd{$}, 
add the
 following to your init file
 @lisp
 (add-hook 'plain-TeX-mode-hook
-         (lambda () (set (make-variable-buffer-local 'TeX-electric-math)
+         (lambda () (set (make-local-variable 'TeX-electric-math)
                          (cons "$" "$"))))
 (add-hook 'LaTeX-mode-hook
-         (lambda () (set (make-variable-buffer-local 'TeX-electric-math)
+         (lambda () (set (make-local-variable 'TeX-electric-math)
                          (cons "\\(" "\\)"))))
 @end lisp
--8<---------------cut here---------------end--------------->8---

Best, Arash

Footnotes:
[1]  
https://www.gnu.org/software/auctex/manual/auctex.html#index-TeX_002delectric_002dmath




--- End Message ---
--- Begin Message --- Subject: Re: bug#37124: Lisp snippet for TeX-electric-math in manual Date: Fri, 23 Aug 2019 00:20:29 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50
Mosè Giordano <address@hidden> writes:

> On Tue, 20 Aug 2019 at 22:57, Arash Esbati <address@hidden> wrote:
>>
>> Hi all,
>>
>> there is a lisp snippet in the manual for `TeX-electric-math'[1]:
>>
>>     (add-hook 'plain-TeX-mode-hook
>>               (lambda () (set (make-variable-buffer-local 'TeX-electric-math)
>>                               (cons "$" "$"))))
>>     (add-hook 'LaTeX-mode-hook
>>               (lambda () (set (make-variable-buffer-local 'TeX-electric-math)
>>                               (cons "\\(" "\\)"))))
>>
>> `make-variable-buffer-local' seems wrong to me, I think
>> `make-local-variable' is the intended function.
>
> I think you're correct.

Hi Mosè,

thanks for your response.  I've pushed the change.  Closing this one.

Best, Arash


--- End Message ---

reply via email to

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