All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [patch 1/4] DocBook: allow to mark structure members private
@ 2005-11-08 18:35 Alexey Dobriyan
  2005-11-08 18:27 ` Randy.Dunlap
  0 siblings, 1 reply; 9+ messages in thread
From: Alexey Dobriyan @ 2005-11-08 18:35 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: linux-kernel

Randy Dunlap wrote:
> Ahoy.  Excellent.  Compare my personal todo list item:

> 35.for kernel-doc: make some fields :private: so that a description is not
>     expected for them.

Aha! A kernel-doc hacker! Randy, by any chance, do you have "support for
nested structs" in your TODO? And if yes, what's the status? I have
parsing with the following syntax:

 # /**
 #  * struct my_struct - short description
 #  * @a: first member
 #  * @b: second member
+#  * @c: nested struct
+#  * @c.p: first member of nested struct
+#  * @c.q: second member of nested struct
 #  * 
 #  * Longer description
 #  */
 # struct my_struct {
 #     int a;
 #     int b;
+#     struct her_struct {
+#         char **p;
+#         short q;
+#     } c;
 # };

But properly nested displaying is in pretty much nil state since .. uh
crap.. summer.


^ permalink raw reply	[flat|nested] 9+ messages in thread
* [patch 0/4] DocBook generation updates
@ 2005-11-07 22:54 Martin Waitz
  2005-11-07 22:54 ` [patch 1/4] DocBook: allow to mark structure members private Martin Waitz
  0 siblings, 1 reply; 9+ messages in thread
From: Martin Waitz @ 2005-11-07 22:54 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

hoi :)

after some months of silence I finally finished some updates to the
kernel documentation.  Nothing major, mostly fixes and small
improvements.

--
Martin Waitz

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

end of thread, other threads:[~2005-11-09 13:31 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-08 18:35 [patch 1/4] DocBook: allow to mark structure members private Alexey Dobriyan
2005-11-08 18:27 ` Randy.Dunlap
2005-11-08 19:00   ` Alexey Dobriyan
2005-11-08 18:48     ` Randy.Dunlap
2005-11-08 19:26       ` Alexey Dobriyan
2005-11-09 13:31         ` Martin Waitz
  -- strict thread matches above, loose matches on Subject: below --
2005-11-07 22:54 [patch 0/4] DocBook generation updates Martin Waitz
2005-11-07 22:54 ` [patch 1/4] DocBook: allow to mark structure members private Martin Waitz
2005-11-08  3:40   ` Randy.Dunlap
2005-11-08  7:25     ` Martin Waitz

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.