diff options
| author | Stefan Kangas | 2025-01-08 07:29:33 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2025-01-08 07:29:33 +0100 |
| commit | 631f43d2bbe403e48d63d963281f1d948dee5263 (patch) | |
| tree | d8b263ee1016086934949a70f80376bacc29b233 /src | |
| parent | 2ec7396d5d190302c16b8d9bd7da14ac9381a21e (diff) | |
| download | emacs-631f43d2bbe403e48d63d963281f1d948dee5263.tar.gz emacs-631f43d2bbe403e48d63d963281f1d948dee5263.zip | |
; Fix indentation in src/nsterm.h
Reduce the diff between master and scratch/igc.
Diffstat (limited to 'src')
| -rw-r--r-- | src/nsterm.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/nsterm.h b/src/nsterm.h index 1c86d6ea980..d03908eb521 100644 --- a/src/nsterm.h +++ b/src/nsterm.h | |||
| @@ -704,26 +704,26 @@ enum ns_return_frame_mode | |||
| 704 | ========================================================================== */ | 704 | ========================================================================== */ |
| 705 | 705 | ||
| 706 | @interface EmacsScroller : NSScroller | 706 | @interface EmacsScroller : NSScroller |
| 707 | { | 707 | { |
| 708 | struct window *window; | 708 | struct window *window; |
| 709 | struct frame *frame; | 709 | struct frame *frame; |
| 710 | NSResponder *prevResponder; | 710 | NSResponder *prevResponder; |
| 711 | 711 | ||
| 712 | /* offset to the bottom of knob of last mouse down */ | 712 | /* offset to the bottom of knob of last mouse down */ |
| 713 | CGFloat last_mouse_offset; | 713 | CGFloat last_mouse_offset; |
| 714 | float min_portion; | 714 | float min_portion; |
| 715 | int pixel_length; | 715 | int pixel_length; |
| 716 | enum scroll_bar_part last_hit_part; | 716 | enum scroll_bar_part last_hit_part; |
| 717 | 717 | ||
| 718 | BOOL condemned; | 718 | BOOL condemned; |
| 719 | 719 | ||
| 720 | BOOL horizontal; | 720 | BOOL horizontal; |
| 721 | 721 | ||
| 722 | /* optimize against excessive positioning calls generated by emacs */ | 722 | /* optimize against excessive positioning calls generated by emacs */ |
| 723 | int em_position; | 723 | int em_position; |
| 724 | int em_portion; | 724 | int em_portion; |
| 725 | int em_whole; | 725 | int em_whole; |
| 726 | } | 726 | } |
| 727 | 727 | ||
| 728 | - (void) mark; | 728 | - (void) mark; |
| 729 | - (instancetype) initFrame: (NSRect )r window: (Lisp_Object)win; | 729 | - (instancetype) initFrame: (NSRect )r window: (Lisp_Object)win; |