all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Property list key names
@ 2008-08-09 13:56 Lennart Borgman (gmail)
  2008-08-09 14:52 ` Juanma Barranquero
  0 siblings, 1 reply; 16+ messages in thread
From: Lennart Borgman (gmail) @ 2008-08-09 13:56 UTC (permalink / raw)
  To: Emacs Devel

I guess there is something like this function in Emacs:

(defun property-list-keys (plist)
   "Return list of key names in property list PLIST."
   (let ((keys)
         (plist (copy-list plist)))
     (while plist
       (setq keys (cons (car plist) keys))
       (setq plist (cddr plist)))
     keys))

What is the name of it?




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

end of thread, other threads:[~2008-08-09 18:54 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-09 13:56 Property list key names Lennart Borgman (gmail)
2008-08-09 14:52 ` Juanma Barranquero
2008-08-09 15:02   ` Lennart Borgman (gmail)
2008-08-09 15:07     ` Juanma Barranquero
2008-08-09 15:11       ` Lennart Borgman (gmail)
2008-08-09 15:16         ` Juanma Barranquero
2008-08-09 16:17           ` Lennart Borgman (gmail)
2008-08-09 16:58             ` Johan Bockgård
2008-08-09 17:18               ` Lennart Borgman (gmail)
2008-08-09 17:20                 ` Lennart Borgman (gmail)
2008-08-09 17:33                 ` Johan Bockgård
2008-08-09 18:18                   ` Lennart Borgman (gmail)
2008-08-09 18:52                     ` Lennart Borgman (gmail)
2008-08-09 18:54                       ` Lennart Borgman (gmail)
2008-08-09 15:08   ` Johan Bockgård
2008-08-09 15:15     ` Juanma Barranquero

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.