aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2008-10-04 18:54:20 +0000
committerGlenn Morris2008-10-04 18:54:20 +0000
commitd1a5744de011dca994907682bf8279a850fc9f5f (patch)
tree1f5951c5e4d75013ae495dab10e918d76cda38d3 /src
parent3a0f6aac0db3b1961c759a278d2bc67b501ddd0a (diff)
downloademacs-d1a5744de011dca994907682bf8279a850fc9f5f.tar.gz
emacs-d1a5744de011dca994907682bf8279a850fc9f5f.zip
Fix case of "GNUstep".
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/nsfns.m2
-rw-r--r--src/nsterm.m2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 46f8ab3b60e..7989621632a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1298,10 +1298,10 @@
1298 1298
1299 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha. 1299 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
1300 1300
1301 * nsterm.m (EmacsApp -application:openFiles:): GNUStep does not 1301 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
1302 define NSApplicationDelegateReplySuccess. 1302 define NSApplicationDelegateReplySuccess.
1303 (EmacsView -converstationIdentifier): Use long instead of 1303 (EmacsView -converstationIdentifier): Use long instead of
1304 NSInteger for GNUStep, since it doesn't have NSInteger. 1304 NSInteger for GNUstep, since it doesn't have NSInteger.
1305 1305
1306 * xmenu.c: Revert last change. 1306 * xmenu.c: Revert last change.
1307 1307
@@ -1741,7 +1741,7 @@
1741 1741
1742 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused. 1742 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
1743 Remove all references. 1743 Remove all references.
1744 (temacs): Add GNUStep specific ld flags. 1744 (temacs): Add GNUstep specific ld flags.
1745 1745
1746 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing, 1746 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
1747 similarly to what X does. 1747 similarly to what X does.
diff --git a/src/nsfns.m b/src/nsfns.m
index 2c55f969c84..f14851b698f 100644
--- a/src/nsfns.m
+++ b/src/nsfns.m
@@ -1592,7 +1592,7 @@ See also the function `ns-server-vendor'. */)
1592 (display) 1592 (display)
1593 Lisp_Object display; 1593 Lisp_Object display;
1594{ 1594{
1595 /* FIXME: return GUI version on GNUSTEP, ?? on OS X */ 1595 /* FIXME: return GUI version on GNUstep, ?? on OS X */
1596 return build_string ("1.0"); 1596 return build_string ("1.0");
1597} 1597}
1598 1598
diff --git a/src/nsterm.m b/src/nsterm.m
index 78d0ba1dfbc..245dff4930e 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -838,7 +838,7 @@ ns_ring_bell ()
838 r.origin.y += (r.size.height - dim.y) / 2; 838 r.origin.y += (r.size.height - dim.y) / 2;
839 r.size.width = dim.x; 839 r.size.width = dim.x;
840 r.size.height = dim.y; 840 r.size.height = dim.y;
841 /* XXX: cacheImageInRect under GNUSTEP does not account for 841 /* XXX: cacheImageInRect under GNUstep does not account for
842 offset in x_set_window_size, so overestimate (4 fine on Cocoa) */ 842 offset in x_set_window_size, so overestimate (4 fine on Cocoa) */
843 surr = NSInsetRect (r, -10, -10); 843 surr = NSInsetRect (r, -10, -10);
844 ns_focus (frame, &surr, 1); 844 ns_focus (frame, &surr, 1);