Fix case of "GNUstep".

This commit is contained in:
Glenn Morris 2008-10-04 18:54:20 +00:00
parent 3a0f6aac0d
commit d1a5744de0
4 changed files with 6 additions and 6 deletions

View file

@ -20,7 +20,7 @@ DARWIN_OS Compiling on Mac OS X or pure Darwin (and using s/darwin.h).
HAVE_NTGUI Use the native W32 GUI for windows, frames, menus&scrollbars.
HAVE_NS Use the NeXT/OpenStep/Cocoa UI under Mac OS X or GNUstep.
NS_IMPL_GNUSTEP Compile support for GNUSTEP implementation of NS GUI API.
NS_IMPL_GNUSTEP Compile support for GNUstep implementation of NS GUI API.
NS_IMPL_COCOA Compile support for Cocoa (Apple) implementation of NS GUI API.
HAVE_X11 Compile support for the X11 GUI.
HAVE_X_WINDOWS Compile support for X Window system

View file

@ -1298,10 +1298,10 @@
* nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
* nsterm.m (EmacsApp -application:openFiles:): GNUStep does not
* nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
define NSApplicationDelegateReplySuccess.
(EmacsView -converstationIdentifier): Use long instead of
NSInteger for GNUStep, since it doesn't have NSInteger.
NSInteger for GNUstep, since it doesn't have NSInteger.
* xmenu.c: Revert last change.
@ -1741,7 +1741,7 @@
* Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
Remove all references.
(temacs): Add GNUStep specific ld flags.
(temacs): Add GNUstep specific ld flags.
* nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
similarly to what X does.

View file

@ -1592,7 +1592,7 @@ DISPLAY should be either a frame or a display name (a string).
(display)
Lisp_Object display;
{
/* FIXME: return GUI version on GNUSTEP, ?? on OS X */
/* FIXME: return GUI version on GNUstep, ?? on OS X */
return build_string ("1.0");
}

View file

@ -838,7 +838,7 @@ Free a pool and temporary objects it refers to (callable from C)
r.origin.y += (r.size.height - dim.y) / 2;
r.size.width = dim.x;
r.size.height = dim.y;
/* XXX: cacheImageInRect under GNUSTEP does not account for
/* XXX: cacheImageInRect under GNUstep does not account for
offset in x_set_window_size, so overestimate (4 fine on Cocoa) */
surr = NSInsetRect (r, -10, -10);
ns_focus (frame, &surr, 1);