all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* No plist-del?
@ 2010-12-24 18:01 Julien Danjou
  2010-12-24 18:27 ` Lennart Borgman
  2010-12-24 18:55 ` Andreas Schwab
  0 siblings, 2 replies; 7+ messages in thread
From: Julien Danjou @ 2010-12-24 18:01 UTC (permalink / raw)
  To: emacs-devel

Hi,

Is there any good reason there's no plist-del function?

-- 
Julien Danjou
❱ http://julien.danjou.info



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: No plist-del?
  2010-12-24 18:01 No plist-del? Julien Danjou
@ 2010-12-24 18:27 ` Lennart Borgman
  2010-12-25 15:25   ` Richard Stallman
  2010-12-24 18:55 ` Andreas Schwab
  1 sibling, 1 reply; 7+ messages in thread
From: Lennart Borgman @ 2010-12-24 18:27 UTC (permalink / raw)
  To: emacs-devel

On Fri, Dec 24, 2010 at 7:01 PM, Julien Danjou <julien@danjou.info> wrote:
> Hi,
>
> Is there any good reason there's no plist-del function?

No one has written it? ;-)



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: No plist-del?
  2010-12-24 18:01 No plist-del? Julien Danjou
  2010-12-24 18:27 ` Lennart Borgman
@ 2010-12-24 18:55 ` Andreas Schwab
  1 sibling, 0 replies; 7+ messages in thread
From: Andreas Schwab @ 2010-12-24 18:55 UTC (permalink / raw)
  To: emacs-devel

Julien Danjou <julien@danjou.info> writes:

> Is there any good reason there's no plist-del function?

Emacs Lisp has no remprop function.

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG 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: No plist-del?
  2010-12-24 18:27 ` Lennart Borgman
@ 2010-12-25 15:25   ` Richard Stallman
  2010-12-25 15:32     ` Lennart Borgman
  0 siblings, 1 reply; 7+ messages in thread
From: Richard Stallman @ 2010-12-25 15:25 UTC (permalink / raw)
  To: Lennart Borgman; +Cc: emacs-devel

In the old days, I refused to include functions in Emacs unless
they were either necessary or an important benefit to users.  I
specifically refused to include functions for mere completeness' sake.
I would have refused to include plist-del (or remprop) because it was
rarely needed and you could write it in Lisp.

It is no longer vital to work to keep Emacs small.  Eight Megabytes
Ain't Constantly Swapping any more.  However, it remains desirable not
to bloat the Emacs Lisp Reference Manual without some benefit.

-- 
Richard Stallman
President, Free Software Foundation
51 Franklin St
Boston MA 02110
USA
www.fsf.org, www.gnu.org



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: No plist-del?
  2010-12-25 15:25   ` Richard Stallman
@ 2010-12-25 15:32     ` Lennart Borgman
  2010-12-25 15:50       ` Andreas Schwab
  0 siblings, 1 reply; 7+ messages in thread
From: Lennart Borgman @ 2010-12-25 15:32 UTC (permalink / raw)
  To: rms; +Cc: emacs-devel

On Sat, Dec 25, 2010 at 4:25 PM, Richard Stallman <rms@gnu.org> wrote:
> In the old days, I refused to include functions in Emacs unless
> they were either necessary or an important benefit to users.  I
> specifically refused to include functions for mere completeness' sake.
> I would have refused to include plist-del (or remprop) because it was
> rarely needed and you could write it in Lisp.

Can you really write that one in lisp?



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: No plist-del?
  2010-12-25 15:32     ` Lennart Borgman
@ 2010-12-25 15:50       ` Andreas Schwab
  2010-12-25 16:34         ` Lennart Borgman
  0 siblings, 1 reply; 7+ messages in thread
From: Andreas Schwab @ 2010-12-25 15:50 UTC (permalink / raw)
  To: Lennart Borgman; +Cc: rms, emacs-devel

Lennart Borgman <lennart.borgman@gmail.com> writes:

> Can you really write that one in lisp?

Sure, it's a trivial list operation (see cl-extra.el).

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG 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: No plist-del?
  2010-12-25 15:50       ` Andreas Schwab
@ 2010-12-25 16:34         ` Lennart Borgman
  0 siblings, 0 replies; 7+ messages in thread
From: Lennart Borgman @ 2010-12-25 16:34 UTC (permalink / raw)
  To: Andreas Schwab; +Cc: rms, emacs-devel

On Sat, Dec 25, 2010 at 4:50 PM, Andreas Schwab <schwab@linux-m68k.org> wrote:
> Lennart Borgman <lennart.borgman@gmail.com> writes:
>
>> Can you really write that one in lisp?
>
> Sure, it's a trivial list operation (see cl-extra.el).

Ah, yes, I was thinking of text prop lists.



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-12-25 16:34 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-24 18:01 No plist-del? Julien Danjou
2010-12-24 18:27 ` Lennart Borgman
2010-12-25 15:25   ` Richard Stallman
2010-12-25 15:32     ` Lennart Borgman
2010-12-25 15:50       ` Andreas Schwab
2010-12-25 16:34         ` Lennart Borgman
2010-12-24 18:55 ` Andreas Schwab

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.