Header line and align-to.

2006-08-19 Thread Matt Hodges
In GNU Emacs 22.0.50.18 (i686-pc-linux-gnu, GTK+ Version 2.8.9) of 2006-08-13 on dugong X server distributor `The X.Org Foundation', version 11.0.60802000 configured using `configure '--with-gtk'' With: (setq header-line-format "foo") the header line (face) extends over the total width of t

Re: "Invalid or undefined bitmap" when launched with -Q

2006-08-19 Thread Richard Stallman
It's not that I do not want to use these x... commands ? I can't use them because the Apple versions of GCC seem to "optimise things away." I tried to compile with gcc-3.3 ? and then GDB is missing other pieces: No symbol "gdb_gctypebits" in current context.

Re: reproducible cygwin memory problems

2006-08-19 Thread emacs user
ok, let me try again. here is a case in which I try to run latest cvs gnu emacs under gdb and this just immediately freezes x windows. surely someone in the cygwin/ emacs teams would be interested in figuring this out...? ~ $ startx& [1] 304 ~ $ Welcome to the XWin X Server Vendor: The Cygwin

Re: Header line and align-to.

2006-08-19 Thread Kim F. Storm
Matt Hodges <[EMAIL PROTECTED]> writes: > (setq header-line-format > (concat (propertize " " 'display `(space :align-to (+ left-fringe > 10))) "foo")) Try: (setq header-line-format (concat " " (propertize " " 'display `(space :align-to (+ left-fringe 10))) "foo")) -