* finding old-style-backquote
@ 2007-09-14 7:51 dhruva
2007-09-14 14:20 ` Stefan Monnier
0 siblings, 1 reply; 4+ messages in thread
From: dhruva @ 2007-09-14 7:51 UTC (permalink / raw)
To: Emacs Devel
Hi,
Is there a way to find the position of the old-style-backquote. Since
we now get a warning, I wonder if there is some variable/flag that I
can set to stop on the first occurrence like debug-on-error. That will
make it easier to find and fix them.
-dky
--
Dhruva Krishnamurthy
Contents reflect my personal views only!
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: finding old-style-backquote
2007-09-14 7:51 finding old-style-backquote dhruva
@ 2007-09-14 14:20 ` Stefan Monnier
2007-09-14 14:39 ` dhruva
0 siblings, 1 reply; 4+ messages in thread
From: Stefan Monnier @ 2007-09-14 14:20 UTC (permalink / raw)
To: dhruva; +Cc: Emacs Devel
> Is there a way to find the position of the old-style-backquote. Since
> we now get a warning, I wonder if there is some variable/flag that I
> can set to stop on the first occurrence like debug-on-error. That will
> make it easier to find and fix them.
The byte-compiler gives some line info (it's only the line number of the
beginning of the top-level sexp in which the old-style-backquote is located,
tho, so it's not as precise as you might ideally want, but I found it to be
sufficient).
In any case C-s (` is not that hard to type, is it?
Stefan
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: finding old-style-backquote
2007-09-14 14:20 ` Stefan Monnier
@ 2007-09-14 14:39 ` dhruva
2007-09-14 17:23 ` Stefan Monnier
0 siblings, 1 reply; 4+ messages in thread
From: dhruva @ 2007-09-14 14:39 UTC (permalink / raw)
To: Stefan Monnier; +Cc: Emacs Devel
Hi,
On 9/14/07, Stefan Monnier <monnier@iro.umontreal.ca> wrote:
> In any case C-s (` is not that hard to type, is it?
(if (boundp '*def-font)
(progn
(if (boundp 'default-frame-plist)
(add-to-list 'default-frame-plist '(font ,*def-font)))
(add-to-list 'default-frame-alist '(font . ,*def-font))))
In the above expression, I get a warning that it uses old style
backquote. I am not able to catch it. Looking for identifying the
culprit.
-dky
--
Dhruva Krishnamurthy
Contents reflect my personal views only!
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: finding old-style-backquote
2007-09-14 14:39 ` dhruva
@ 2007-09-14 17:23 ` Stefan Monnier
0 siblings, 0 replies; 4+ messages in thread
From: Stefan Monnier @ 2007-09-14 17:23 UTC (permalink / raw)
To: dhruva; +Cc: Emacs Devel
> On 9/14/07, Stefan Monnier <monnier@iro.umontreal.ca> wrote:
>> In any case C-s (` is not that hard to type, is it?
> (if (boundp '*def-font)
> (progn
> (if (boundp 'default-frame-plist)
> (add-to-list 'default-frame-plist '(font ,*def-font)))
> (add-to-list 'default-frame-alist '(font . ,*def-font))))
> In the above expression, I get a warning that it uses old style
> backquote. I am not able to catch it. Looking for identifying the
> culprit.
Buggy code: your new-style unquotes (i.e. ",*def-font") are not
inside backquotes so they will not be evaluated and your add-to-list will
hence not do what you intended.
Stefan
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-09-14 17:23 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-14 7:51 finding old-style-backquote dhruva
2007-09-14 14:20 ` Stefan Monnier
2007-09-14 14:39 ` dhruva
2007-09-14 17:23 ` Stefan Monnier
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.