aboutsummaryrefslogtreecommitdiffstats
path: root/src/nsfns.m
diff options
context:
space:
mode:
authorBastien2017-07-03 09:06:29 +0200
committerBastien2017-07-03 09:06:29 +0200
commit5ca1888fe670aee7febd4d42665d7372ab2ffebc (patch)
tree1f7f8d8a7580e556fc83cf3a6aaeec567b33a090 /src/nsfns.m
parent20e006ffee41062f1b551a92c24d9edc53cd0f56 (diff)
parent1b4f0a92ff3505ef9a465b9b391756e3a73a6443 (diff)
downloademacs-5ca1888fe670aee7febd4d42665d7372ab2ffebc.tar.gz
emacs-5ca1888fe670aee7febd4d42665d7372ab2ffebc.zip
Merge branch 'master' into scratch/org-mode-merge
Diffstat (limited to 'src/nsfns.m')
-rw-r--r--src/nsfns.m12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/nsfns.m b/src/nsfns.m
index dbce279da63..68eba8b6a2e 100644
--- a/src/nsfns.m
+++ b/src/nsfns.m
@@ -984,6 +984,7 @@ frame_parm_handler ns_frame_parm_handlers[] =
984 x_set_no_accept_focus, 984 x_set_no_accept_focus,
985 x_set_z_group, /* x_set_z_group */ 985 x_set_z_group, /* x_set_z_group */
986 0, /* x_set_override_redirect */ 986 0, /* x_set_override_redirect */
987 x_set_no_special_glyphs,
987}; 988};
988 989
989 990
@@ -1256,6 +1257,8 @@ This function is an internal primitive--use `make-frame' instead. */)
1256 "leftFringe", "LeftFringe", RES_TYPE_NUMBER); 1257 "leftFringe", "LeftFringe", RES_TYPE_NUMBER);
1257 x_default_parameter (f, parms, Qright_fringe, Qnil, 1258 x_default_parameter (f, parms, Qright_fringe, Qnil,
1258 "rightFringe", "RightFringe", RES_TYPE_NUMBER); 1259 "rightFringe", "RightFringe", RES_TYPE_NUMBER);
1260 x_default_parameter (f, parms, Qno_special_glyphs, Qnil,
1261 NULL, NULL, RES_TYPE_BOOLEAN);
1259 1262
1260 init_frame_faces (f); 1263 init_frame_faces (f);
1261 1264
@@ -1325,6 +1328,15 @@ This function is an internal primitive--use `make-frame' instead. */)
1325 f->output_data.ns->hourglass_cursor = [NSCursor disappearingItemCursor]; 1328 f->output_data.ns->hourglass_cursor = [NSCursor disappearingItemCursor];
1326 f->output_data.ns->horizontal_drag_cursor = [NSCursor resizeLeftRightCursor]; 1329 f->output_data.ns->horizontal_drag_cursor = [NSCursor resizeLeftRightCursor];
1327 f->output_data.ns->vertical_drag_cursor = [NSCursor resizeUpDownCursor]; 1330 f->output_data.ns->vertical_drag_cursor = [NSCursor resizeUpDownCursor];
1331 f->output_data.ns->left_edge_cursor = [NSCursor resizeLeftRightCursor];
1332 f->output_data.ns->top_left_corner_cursor = [NSCursor arrowCursor];
1333 f->output_data.ns->top_edge_cursor = [NSCursor resizeUpDownCursor];
1334 f->output_data.ns->top_right_corner_cursor = [NSCursor arrowCursor];
1335 f->output_data.ns->right_edge_cursor = [NSCursor resizeLeftRightCursor];
1336 f->output_data.ns->bottom_right_corner_cursor = [NSCursor arrowCursor];
1337 f->output_data.ns->bottom_edge_cursor = [NSCursor resizeUpDownCursor];
1338 f->output_data.ns->bottom_left_corner_cursor = [NSCursor arrowCursor];
1339
1328 FRAME_DISPLAY_INFO (f)->vertical_scroll_bar_cursor 1340 FRAME_DISPLAY_INFO (f)->vertical_scroll_bar_cursor
1329 = [NSCursor arrowCursor]; 1341 = [NSCursor arrowCursor];
1330 FRAME_DISPLAY_INFO (f)->horizontal_scroll_bar_cursor 1342 FRAME_DISPLAY_INFO (f)->horizontal_scroll_bar_cursor