all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* WoMan error
@ 2010-02-05 12:36 alin.s
  2010-02-05 13:03 ` Andreas Schwab
  0 siblings, 1 reply; 2+ messages in thread
From: alin.s @ 2010-02-05 12:36 UTC (permalink / raw)
  To: Emacs-devel


In the WOMAN page of XCreateGC, I see the paragraph STRUCTURES so:


STRUCTURES
	The XGCValues structure contains:

	/* GC attribute value mask bits */
	T{
	#define
	T}   T{
	GCFunction
	T}   T{
	(1L<<0)
	T}
	T{
	#define
	T}   T{
	GCPlaneMask
	T}   T{
	(1L<<1)
	T}
	T{
	#define
	T}   T{
	GCForeground
	T}   T{
	(1L<<2)
	T}
	T{
	#define
	T}   T{
	GCBackground
	T}   T{
	(1L<<3)
	T}
	T{
	#define
	T}   T{
	GCLineWidth
	T}   T{
	(1L<<4)
	T}
	T{
	#define
	T}   T{
	GCLineStyle
	T}   T{
	(1L<<5)
	T}
	T{
	#define
	T}   T{
	GCCapStyle
	T}   T{
	(1L<<6)
	T}
	T{
	#define
	T}   T{
	GCJoinStyle
	T}   T{
	(1L<<7)
	T}
	T{
	#define
	T}   T{
	GCFillStyle
	T}   T{
	(1L<<8)
	T}
	T{
	#define
	T}   T{
	GCFillRule
	T}   T{
	(1L<<9)
	T}
	T{
	#define
	T}   T{
	GCTile
	T}   T{
	(1L<<10)
	T}
	T{
	#define
	T}   T{
	GCStipple
	T}   T{
	(1L<<11)
	T}
	T{
	#define
	T}   T{
	GCTileStipXOrigin
	T}   T{
	(1L<<12)
	T}
	T{
	#define
	T}   T{
	GCTileStipYOrigin
	T}   T{
	(1L<<13)
	T}
	T{
	#define
	T}   T{
	GCFont
	T}   T{
	(1L<<14)
	T}
	T{
	#define
	T}   T{
	GCSubwindowMode
	T}   T{
	(1L<<15)
	T}
	T{
	#define
	T}   T{
	GCGraphicsExposures
	T}   T{
	(1L<<16)
	T}
	T{
	#define
	T}   T{
	GCClipXOrigin
	T}   T{
	(1L<<17)
	T}
	T{
	#define
	T}   T{
	GCClipYOrigin
	T}   T{
	(1L<<18)
	T}
	T{
	#define
	T}   T{
	GCClipMask
	T}   T{
	(1L<<19)
	T}
	T{
	#define
	T}   T{
	GCDashOffset
	T}   T{
	(1L<<20)
	T}
	T{
	#define
	T}   T{
	GCDashList
	T}   T{
	(1L<<21)
	T}
	T{
	#define
	T}   T{
	GCArcMode
	T}   T{
	(1L<<22)
	T}
	/* Values */

I should have seen it so:


STRUCTURES
       The XGCValues structure contains:

       /* GC attribute value mask bits */

       #define   GCFunction                  (1L<<0)
       #define   GCPlaneMask                 (1L<<1)
       #define   GCForeground                (1L<<2)
       #define   GCBackground                (1L<<3)
       #define   GCLineWidth                 (1L<<4)
       #define   GCLineStyle                 (1L<<5)
       #define   GCCapStyle                  (1L<<6)
       #define   GCJoinStyle                 (1L<<7)
       #define   GCFillStyle                 (1L<<8)
       #define   GCFillRule                  (1L<<9)
       #define   GCTile                      (1L<<10)
       #define   GCStipple                   (1L<<11)
       #define   GCTileStipXOrigin           (1L<<12)
       #define   GCTileStipYOrigin           (1L<<13)
       #define   GCFont                      (1L<<14)
       #define   GCSubwindowMode             (1L<<15)
       #define   GCGraphicsExposures         (1L<<16)
       #define   GCClipXOrigin               (1L<<17)
       #define   GCClipYOrigin               (1L<<18)
       #define   GCClipMask                  (1L<<19)
       #define   GCDashOffset                (1L<<20)
       #define   GCDashList                  (1L<<21)
       #define   GCArcMode                   (1L<<22)
       /* Values */





-- 
View this message in context: http://old.nabble.com/WoMan-error-tp27467170p27467170.html
Sent from the Emacs - Dev mailing list archive at Nabble.com.





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

* Re: WoMan error
  2010-02-05 12:36 WoMan error alin.s
@ 2010-02-05 13:03 ` Andreas Schwab
  0 siblings, 0 replies; 2+ messages in thread
From: Andreas Schwab @ 2010-02-05 13:03 UTC (permalink / raw)
  To: alin.s; +Cc: Emacs-devel

"alin.s" <alinsoar@voila.fr> writes:

> In the WOMAN page of XCreateGC, I see the paragraph STRUCTURES so:
>
>
> STRUCTURES
> 	The XGCValues structure contains:
>
> 	/* GC attribute value mask bits */
> 	T{

woman.el has only very limited support for tbl, especially T{ T} is not
supported.

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] 2+ messages in thread

end of thread, other threads:[~2010-02-05 13:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-05 12:36 WoMan error alin.s
2010-02-05 13:03 ` 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.