aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/nsterm.h2
-rw-r--r--src/nsterm.m8
3 files changed, 9 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 42f79d2ae46..a6c308771c2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,9 @@
12014-01-05 Paul Eggert <eggert@cs.ucla.edu> 12014-01-05 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Spelling fixes.
4 * nsterm.h (updateCollectionBehavior): Rename from
5 updateCollectionBehaviour. All uses changed.
6
3 Port to GNU/Linux with recent grsecurity/PaX patches (Bug#16343). 7 Port to GNU/Linux with recent grsecurity/PaX patches (Bug#16343).
4 * Makefile.in (SETFATTR): New macro. 8 * Makefile.in (SETFATTR): New macro.
5 (temacs$(EXEEXT)): Use it. 9 (temacs$(EXEEXT)): Use it.
diff --git a/src/nsterm.h b/src/nsterm.h
index bf1a2e24b41..796d6ef8ca0 100644
--- a/src/nsterm.h
+++ b/src/nsterm.h
@@ -183,7 +183,7 @@ typedef float EmacsCGFloat;
183- (BOOL) fsIsNative; 183- (BOOL) fsIsNative;
184- (BOOL) isFullscreen; 184- (BOOL) isFullscreen;
185#ifdef HAVE_NATIVE_FS 185#ifdef HAVE_NATIVE_FS
186- (void) updateCollectionBehaviour; 186- (void) updateCollectionBehavior;
187#endif 187#endif
188 188
189#ifdef NS_IMPL_GNUSTEP 189#ifdef NS_IMPL_GNUSTEP
diff --git a/src/nsterm.m b/src/nsterm.m
index 0097b5b30e4..eefaea8888f 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -3497,7 +3497,7 @@ check_native_fs ()
3497 if (FRAME_NS_P (f)) 3497 if (FRAME_NS_P (f))
3498 { 3498 {
3499 EmacsView *view = FRAME_NS_VIEW (f); 3499 EmacsView *view = FRAME_NS_VIEW (f);
3500 [view updateCollectionBehaviour]; 3500 [view updateCollectionBehavior];
3501 } 3501 }
3502 } 3502 }
3503} 3503}
@@ -6317,7 +6317,7 @@ if (cols > 0 && rows > 0)
6317 [self setFSValue: fs_before_fs]; 6317 [self setFSValue: fs_before_fs];
6318 fs_before_fs = -1; 6318 fs_before_fs = -1;
6319#ifdef HAVE_NATIVE_FS 6319#ifdef HAVE_NATIVE_FS
6320 [self updateCollectionBehaviour]; 6320 [self updateCollectionBehavior];
6321#endif 6321#endif
6322 if (FRAME_EXTERNAL_TOOL_BAR (emacsframe)) 6322 if (FRAME_EXTERNAL_TOOL_BAR (emacsframe))
6323 { 6323 {
@@ -6349,7 +6349,7 @@ if (cols > 0 && rows > 0)
6349} 6349}
6350 6350
6351#ifdef HAVE_NATIVE_FS 6351#ifdef HAVE_NATIVE_FS
6352- (void)updateCollectionBehaviour 6352- (void)updateCollectionBehavior
6353{ 6353{
6354 if (! [self isFullscreen]) 6354 if (! [self isFullscreen])
6355 { 6355 {
@@ -7647,7 +7647,7 @@ Default is t for OSX >= 10.7, nil otherwise. */);
7647 7647
7648 DEFVAR_BOOL ("ns-use-srgb-colorspace", ns_use_srgb_colorspace, 7648 DEFVAR_BOOL ("ns-use-srgb-colorspace", ns_use_srgb_colorspace,
7649 doc: /*Non-nil means to use sRGB colorspace on OSX >= 10.7. 7649 doc: /*Non-nil means to use sRGB colorspace on OSX >= 10.7.
7650Note that this does not apply to images. 7650Note that this does not apply to images.
7651This variable is ignored on OSX < 10.7 and GNUStep. Default is t. */); 7651This variable is ignored on OSX < 10.7 and GNUStep. Default is t. */);
7652 ns_use_srgb_colorspace = YES; 7652 ns_use_srgb_colorspace = YES;
7653 7653