* 23.0.60; :enable (mark-active)
@ 2008-03-06 16:36 Lennart Borgman (gmail)
2008-03-06 17:00 ` Bastien
0 siblings, 1 reply; 7+ messages in thread
From: Lennart Borgman (gmail) @ 2008-03-06 16:36 UTC (permalink / raw)
To: emacs-pretest-bug
There are a couple of
:enable (mark-active)
in lisp-mode.el. There is no function mark-active, should not the line
above be
:enable 'mark-active
In GNU Emacs 23.0.60.1 (i386-mingw-nt5.1.2600)
of 2008-03-05
Windowing system distributor `Microsoft Corp.', version 5.1.2600
configured using `configure --with-gcc (3.4) --no-opt --cflags
-Ic:/g/include -fno-crossjumping'
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: 23.0.60; :enable (mark-active)
2008-03-06 16:36 23.0.60; :enable (mark-active) Lennart Borgman (gmail)
@ 2008-03-06 17:00 ` Bastien
2008-03-06 17:12 ` Lennart Borgman (gmail)
0 siblings, 1 reply; 7+ messages in thread
From: Bastien @ 2008-03-06 17:00 UTC (permalink / raw)
To: Lennart Borgman (gmail); +Cc: emacs-pretest-bug
"Lennart Borgman (gmail)" <lennart.borgman@gmail.com> writes:
> There are a couple of
>
> :enable (mark-active)
>
> in lisp-mode.el. There is no function mark-active, should not the line
> above be
>
> :enable 'mark-active
It should be
:enable mark-active
I will fix this, thanks!
--
Bastien
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: 23.0.60; :enable (mark-active)
2008-03-06 17:00 ` Bastien
@ 2008-03-06 17:12 ` Lennart Borgman (gmail)
2008-03-06 17:23 ` Andreas Schwab
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Lennart Borgman (gmail) @ 2008-03-06 17:12 UTC (permalink / raw)
To: Bastien; +Cc: emacs-pretest-bug
Bastien wrote:
> "Lennart Borgman (gmail)" <lennart.borgman@gmail.com> writes:
>
>> There are a couple of
>>
>> :enable (mark-active)
>>
>> in lisp-mode.el. There is no function mark-active, should not the line
>> above be
>>
>> :enable 'mark-active
>
> It should be
>
> :enable mark-active
>
> I will fix this, thanks!
Thanks, but I usually use 'mark-active. Which one is correct here?
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: 23.0.60; :enable (mark-active)
2008-03-06 17:12 ` Lennart Borgman (gmail)
@ 2008-03-06 17:23 ` Andreas Schwab
2008-03-06 17:23 ` Bastien
2008-03-06 17:36 ` Drew Adams
2 siblings, 0 replies; 7+ messages in thread
From: Andreas Schwab @ 2008-03-06 17:23 UTC (permalink / raw)
To: Lennart Borgman (gmail); +Cc: Bastien, emacs-pretest-bug
"Lennart Borgman (gmail)" <lennart.borgman@gmail.com> writes:
> Bastien wrote:
>> "Lennart Borgman (gmail)" <lennart.borgman@gmail.com> writes:
>>
>>> There are a couple of
>>>
>>> :enable (mark-active)
>>>
>>> in lisp-mode.el. There is no function mark-active, should not the line
>>> above be
>>>
>>> :enable 'mark-active
>>
>> It should be
>>
>> :enable mark-active
>>
>> I will fix this, thanks!
>
> Thanks, but I usually use 'mark-active. Which one is correct here?
Depends on where it is used. The use here is inside a quoted form,
where 'mark-active would be included as-is (and subsequently always
non-nil when evaluated).
Andreas.
--
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
"And now for something completely different."
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: 23.0.60; :enable (mark-active)
2008-03-06 17:12 ` Lennart Borgman (gmail)
2008-03-06 17:23 ` Andreas Schwab
@ 2008-03-06 17:23 ` Bastien
2008-03-06 17:26 ` Lennart Borgman (gmail)
2008-03-06 17:36 ` Drew Adams
2 siblings, 1 reply; 7+ messages in thread
From: Bastien @ 2008-03-06 17:23 UTC (permalink / raw)
To: Lennart Borgman (gmail); +Cc: emacs-pretest-bug
"Lennart Borgman (gmail)" <lennart.borgman@gmail.com> writes:
>> It should be
>>
>> :enable mark-active
>>
>> I will fix this, thanks!
>
> Thanks, but I usually use 'mark-active. Which one is correct here?
It's
:enable mark-active
If you grep the code, the places where you see
:enable 'some-variable
are thos where the is part of
(list ... :enable 'some-variable)
--
Bastien
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: 23.0.60; :enable (mark-active)
2008-03-06 17:23 ` Bastien
@ 2008-03-06 17:26 ` Lennart Borgman (gmail)
0 siblings, 0 replies; 7+ messages in thread
From: Lennart Borgman (gmail) @ 2008-03-06 17:26 UTC (permalink / raw)
To: Bastien; +Cc: emacs-pretest-bug, Andreas Schwab
Bastien wrote:
> "Lennart Borgman (gmail)" <lennart.borgman@gmail.com> writes:
>
>>> It should be
>>>
>>> :enable mark-active
>>>
>>> I will fix this, thanks!
>> Thanks, but I usually use 'mark-active. Which one is correct here?
>
> It's
>
> :enable mark-active
>
> If you grep the code, the places where you see
>
> :enable 'some-variable
>
> are thos where the is part of
>
> (list ... :enable 'some-variable)
Ah, yes, I did not notice it was in a quoted form.
^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: 23.0.60; :enable (mark-active)
2008-03-06 17:12 ` Lennart Borgman (gmail)
2008-03-06 17:23 ` Andreas Schwab
2008-03-06 17:23 ` Bastien
@ 2008-03-06 17:36 ` Drew Adams
2 siblings, 0 replies; 7+ messages in thread
From: Drew Adams @ 2008-03-06 17:36 UTC (permalink / raw)
To: 'Lennart Borgman (gmail)', 'Bastien'; +Cc: emacs-pretest-bug
> > It should be
> > :enable mark-active
> > I will fix this, thanks!
>
> Thanks, but I usually use 'mark-active. Which one is correct here?
'mark-active
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2008-03-06 17:36 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-06 16:36 23.0.60; :enable (mark-active) Lennart Borgman (gmail)
2008-03-06 17:00 ` Bastien
2008-03-06 17:12 ` Lennart Borgman (gmail)
2008-03-06 17:23 ` Andreas Schwab
2008-03-06 17:23 ` Bastien
2008-03-06 17:26 ` Lennart Borgman (gmail)
2008-03-06 17:36 ` Drew Adams
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).