emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: gdb-ui.el assumes images support


From: Kim F. Storm
Subject: Re: gdb-ui.el assumes images support
Date: Mon, 08 Nov 2004 13:47:18 +0100
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/21.3.50 (gnu/linux)

Richard Stallman <address@hidden> writes:

>     This line from gdb-ui.el:
>
>       (define-fringe-bitmap 'breakpoint
>            "\x3c\x7e\xff\xff\xff\xff\x7e\x3c")
>
>     causes the Emacs build to fail if it is configured --without-x, since
>     fringe.c is not compiled then.
>
> Would moving the definition of this function to another file
> solve the problem?

It is defined in fringe.c when HAVE_WINDOW_SYSTEM, so it's not
easy to move.

Perhaps we could add this to subr.el:

(unless widow-system
  (defun define-fringe-bitmap (&optional rest)
    "Dummy function for text-only terminals."))

-- 
Kim F. Storm <address@hidden> http://www.cua.dk





reply via email to

[Prev in Thread] Current Thread [Next in Thread]