diff options
Diffstat (limited to 'src/nsfns.m')
| -rw-r--r-- | src/nsfns.m | 12 |
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 |