emacs-devel
[Top][All Lists]
Advanced

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

Re: Minor src/xmenu.c change for older GCC versions


From: Chong Yidong
Subject: Re: Minor src/xmenu.c change for older GCC versions
Date: Fri, 03 Nov 2006 22:21:10 -0500
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.90 (gnu/linux)

Giorgos Keramidas <address@hidden> writes:

> On FreeBSD 4.X we use GCC 2.95.4 20020320 [FreeBSD] as the system
> compiler.  The src/xmenu.c source triggers an error when compiled with
> this version of GCC, so we had to make the following local change
> as part of the editors/emacs-devel port of Emacs 22.X to FreeBSD:
>
> %%%
> diff -r e9c18eba38ea -r 355e6a7d786b src/xmenu.c
> --- a/src/xmenu.c     Fri Oct 27 15:45:51 2006 +0000
> +++ b/src/xmenu.c     Sat Oct 28 01:49:45 2006 +0300
> @@ -1395,9 +1395,10 @@ If FRAME is nil or not given, use the se
>       Lisp_Object frame;
>  {
>    GtkWidget *menubar;
> +  FRAME_PTR f;
> +
>    BLOCK_INPUT;
> -  FRAME_PTR f = check_x_frame (frame);
> -
> +  f = check_x_frame (frame);
>    if (FRAME_EXTERNAL_MENU_BAR (f))
>      set_frame_menubar (f, 0, 1);

Checked in.  Thanks.




reply via email to

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