diff options
| author | Kim F. Storm | 2004-02-19 23:26:06 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-02-19 23:26:06 +0000 |
| commit | 2320865de4ed4217fd534a5644f6ed0977981df1 (patch) | |
| tree | acf176b99b0ae23b0d5709fca7b166a450f71440 /src | |
| parent | 351d2e147ac308bfbb3bd06255cfbad7b639883b (diff) | |
| download | emacs-2320865de4ed4217fd534a5644f6ed0977981df1.tar.gz emacs-2320865de4ed4217fd534a5644f6ed0977981df1.zip | |
Fix whitespace.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 39ac2695548..2a37e5592c0 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -4985,7 +4985,7 @@ make_lispy_position (f, x, y, time) | |||
| 4985 | { | 4985 | { |
| 4986 | Lisp_Object string; | 4986 | Lisp_Object string; |
| 4987 | int charpos; | 4987 | int charpos; |
| 4988 | 4988 | ||
| 4989 | posn = (part == ON_LEFT_MARGIN) ? Qleft_margin : Qright_margin; | 4989 | posn = (part == ON_LEFT_MARGIN) ? Qleft_margin : Qright_margin; |
| 4990 | rx = wx, ry = wy; | 4990 | rx = wx, ry = wy; |
| 4991 | string = marginal_area_string (w, part, &rx, &ry, &charpos, | 4991 | string = marginal_area_string (w, part, &rx, &ry, &charpos, |
| @@ -5468,7 +5468,7 @@ make_lispy_event (event) | |||
| 5468 | { | 5468 | { |
| 5469 | Lisp_Object position; | 5469 | Lisp_Object position; |
| 5470 | Lisp_Object head; | 5470 | Lisp_Object head; |
| 5471 | 5471 | ||
| 5472 | /* Build the position as appropriate for this mouse click. */ | 5472 | /* Build the position as appropriate for this mouse click. */ |
| 5473 | struct frame *f = XFRAME (event->frame_or_window); | 5473 | struct frame *f = XFRAME (event->frame_or_window); |
| 5474 | 5474 | ||
| @@ -6573,6 +6573,7 @@ record_asynch_buffer_change () | |||
| 6573 | buffer of input_events as we used to do. Instead, we just allocate | 6573 | buffer of input_events as we used to do. Instead, we just allocate |
| 6574 | a small buffer of input events -- and then poll for more input if we | 6574 | a small buffer of input events -- and then poll for more input if we |
| 6575 | read a full buffer of input events. */ | 6575 | read a full buffer of input events. */ |
| 6576 | |||
| 6576 | #define NREAD_INPUT_EVENTS 8 | 6577 | #define NREAD_INPUT_EVENTS 8 |
| 6577 | 6578 | ||
| 6578 | static int | 6579 | static int |
| @@ -6587,7 +6588,6 @@ read_avail_input (expected) | |||
| 6587 | int discard = 0; | 6588 | int discard = 0; |
| 6588 | int nr; | 6589 | int nr; |
| 6589 | 6590 | ||
| 6590 | |||
| 6591 | do { | 6591 | do { |
| 6592 | struct input_event buf[NREAD_INPUT_EVENTS]; | 6592 | struct input_event buf[NREAD_INPUT_EVENTS]; |
| 6593 | 6593 | ||
| @@ -6726,7 +6726,7 @@ read_avail_input (expected) | |||
| 6726 | buf.code = cbuf[i]; | 6726 | buf.code = cbuf[i]; |
| 6727 | buf.frame_or_window = selected_frame; | 6727 | buf.frame_or_window = selected_frame; |
| 6728 | buf.arg = Qnil; | 6728 | buf.arg = Qnil; |
| 6729 | 6729 | ||
| 6730 | kbd_buffer_store_event (&buf); | 6730 | kbd_buffer_store_event (&buf); |
| 6731 | /* Don't look at input that follows a C-g too closely. | 6731 | /* Don't look at input that follows a C-g too closely. |
| 6732 | This reduces lossage due to autorepeat on C-g. */ | 6732 | This reduces lossage due to autorepeat on C-g. */ |
| @@ -8268,7 +8268,7 @@ access_keymap_keyremap (map, key, prompt, do_funcall) | |||
| 8268 | int do_funcall; | 8268 | int do_funcall; |
| 8269 | { | 8269 | { |
| 8270 | Lisp_Object next; | 8270 | Lisp_Object next; |
| 8271 | 8271 | ||
| 8272 | next = access_keymap (map, key, 1, 0, 1); | 8272 | next = access_keymap (map, key, 1, 0, 1); |
| 8273 | 8273 | ||
| 8274 | /* Handle symbol with autoload definition. */ | 8274 | /* Handle symbol with autoload definition. */ |
| @@ -8283,7 +8283,7 @@ access_keymap_keyremap (map, key, prompt, do_funcall) | |||
| 8283 | && (!NILP (Farrayp (XSYMBOL (next)->function)) | 8283 | && (!NILP (Farrayp (XSYMBOL (next)->function)) |
| 8284 | || KEYMAPP (XSYMBOL (next)->function))) | 8284 | || KEYMAPP (XSYMBOL (next)->function))) |
| 8285 | next = XSYMBOL (next)->function; | 8285 | next = XSYMBOL (next)->function; |
| 8286 | 8286 | ||
| 8287 | /* If the keymap gives a function, not an | 8287 | /* If the keymap gives a function, not an |
| 8288 | array, then call the function with one arg and use | 8288 | array, then call the function with one arg and use |
| 8289 | its value instead. */ | 8289 | its value instead. */ |
| @@ -9297,7 +9297,7 @@ read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last, | |||
| 9297 | /* Adjust the function-key-map counters. */ | 9297 | /* Adjust the function-key-map counters. */ |
| 9298 | fkey.end += diff; | 9298 | fkey.end += diff; |
| 9299 | fkey.start += diff; | 9299 | fkey.start += diff; |
| 9300 | 9300 | ||
| 9301 | goto replay_sequence; | 9301 | goto replay_sequence; |
| 9302 | } | 9302 | } |
| 9303 | } | 9303 | } |
| @@ -11305,7 +11305,7 @@ keys_of_keyboard () | |||
| 11305 | /* Handling it at such a low-level causes read_key_sequence to get | 11305 | /* Handling it at such a low-level causes read_key_sequence to get |
| 11306 | * confused because it doesn't realize that the current_buffer was | 11306 | * confused because it doesn't realize that the current_buffer was |
| 11307 | * changed by read_char. | 11307 | * changed by read_char. |
| 11308 | * | 11308 | * |
| 11309 | * initial_define_lispy_key (Vspecial_event_map, "select-window", | 11309 | * initial_define_lispy_key (Vspecial_event_map, "select-window", |
| 11310 | * "handle-select-window"); */ | 11310 | * "handle-select-window"); */ |
| 11311 | initial_define_lispy_key (Vspecial_event_map, "save-session", | 11311 | initial_define_lispy_key (Vspecial_event_map, "save-session", |