aboutsummaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* (read_key_sequence): Check that key is an integerGerd Moellmann2001-08-031-22/+15
| | | | | | | | | | | before comparing it with quit_char. (add_command_key): Use larger_vector. (read_char_x_menu_prompt): Instead of converting symbol and integer events into conses (EVENT . nil), use (EVENT . disabled) which cannot be confused with legal events. (read_char): When reading from Vunread_command_events, check for events of the form (EVENT . disabled) instead of (EVENT . nil).
* (resize_mini_window): If Vmax_mini_window_height isGerd Moellmann2001-08-032-1/+6
| | | | a float, determine the max height from the frame's height.
* *** empty log message ***Gerd Moellmann2001-08-021-0/+5
|
* (redisplay_internal): Take message_cleared_p intoGerd Moellmann2001-08-021-1/+1
| | | | account only if minibuf_level == 0.
* *** empty log message ***Gerd Moellmann2001-08-011-0/+3
|
* (redisplay_internal): Add a check for the lastGerd Moellmann2001-08-011-1/+3
| | | | displayed message.
* (message_cleared_p): New variable.Gerd Moellmann2001-08-012-3/+24
| | | | | | | (clear_message): Set message_cleared_p when clearing the current message. (redisplay_internal): Look at message_cleared_p to capture the case that the echo area should be cleared.
* (resize_echo_area_exactly): Fix typo in function name.Gerd Moellmann2001-08-012-2/+10
|
* (resize_echo_area_exactly): Fix typo in functionGerd Moellmann2001-08-011-1/+1
| | | | name.
* (command_loop_1): Fix spelling ofGerd Moellmann2001-08-011-2/+2
| | | | resize_echo_area_exactly.
* *** empty log message ***Gerd Moellmann2001-08-011-0/+5
|
* (x_set_tool_bar_lines): Clear the tool bar window'sGerd Moellmann2001-08-011-0/+3
| | | | current matrix when the window gets smaller.
* (strout): Treat the characters at *ptr as unsigned char.Eli Zaretskii2001-08-012-1/+6
|
* *** empty log message ***Gerd Moellmann2001-07-311-0/+5
|
* (Finsert_file_contents): Don't treat a return valueGerd Moellmann2001-07-311-1/+5
| | | | of 0 from emacs_read as an IO error.
* *** empty log message ***Gerd Moellmann2001-07-301-0/+5
|
* (abs): New macro.Gerd Moellmann2001-07-301-5/+21
| | | | | | (double_click_fuzz): New variable. (make_lispy_event): Use it to determine what makes a double-click. (syms_of_keyboard): DEFVAR_INT it.
* *** empty log message ***Gerd Moellmann2001-07-301-0/+6
|
* (set_frame_menubar): Take into account thatGerd Moellmann2001-07-301-3/+4
| | | | | f->menu_bar_vector can be nil, and not a vector. From Ken Raeburn <raeburn@gnu.org>.
* (init_from_display_pos): If POS is in an overlay string,Gerd Moellmann2001-07-272-25/+41
| | | | | | | | | deal with the first overlay string having an image `display' property. (try_window_reusing_current_matrix, compute_line_metrics): Fix computation of row's visible height for the case that part of the row is invisible above and part of the row is at the same time invisible below the window.
* (shift_glyph_matrix, blank_row): Fix computationGerd Moellmann2001-07-271-11/+9
| | | | of row's visible height.
* (x_get_glyph_string_clip_rect): Minor cleanup.Gerd Moellmann2001-07-271-15/+17
|
* *** empty log message ***Gerd Moellmann2001-07-261-0/+11
|
* (x-show-tip): Doc fix.Gerd Moellmann2001-07-261-1/+4
|
* (Vx_max_tooltip_size): New variable.Gerd Moellmann2001-07-261-8/+33
| | | | | | | | (syms_of_xfns): DEFVAR_LISP it. (Fx_show_tip): Set frame's window_width to the width of the window. Use a maximum tooltip size specified by Vx_max_tooltip_size, if that has valid contents. (x_create_tip_frame): Set tooltip buffer's truncate-lines to nil.
* (x_display_list): New variable.Andrew Innes2001-07-262-0/+12
| | | | (w32_term_init): Set it.
* (x_display_list): New extern.Andrew Innes2001-07-261-0/+1
|
* *** empty log message ***Gerd Moellmann2001-07-261-0/+7
|
* (resize_mini_window): Give up when inhibit-redisplayGerd Moellmann2001-07-261-6/+13
| | | | | | is non-nil, instead of when redisplaying_p is non-zero. See comment there. (mark_window_display_accurate_1): Add an assertion.
* *** empty log message ***Gerd Moellmann2001-07-251-0/+2
|
* (struct it): Increase size of ctl_chars to 16.Gerd Moellmann2001-07-251-3/+3
|
* (Fx_file_dialog): Block/unblock input while processingGerd Moellmann2001-07-252-2/+13
| | | | events so that we get a chance of processing expose events.
* (resize_mini_window): Don't resize while redisplaying.Gerd Moellmann2001-07-252-0/+10
|
* *** empty log message ***Gerd Moellmann2001-07-241-0/+5
|
* (valid_image_p): Protect better against invalid imageGerd Moellmann2001-07-241-5/+16
| | | | specifications.
* (current_column): Fix column computation in theGerd Moellmann2001-07-232-0/+17
| | | | | presence of display table entries. (current_column_1, Fmove_to_column, compute_motion): Likewise.
* (adjust_glyph_matrix): In the optimization forGerd Moellmann2001-07-232-6/+12
| | | | | windows whose height has changed, use the new window height to compute which rows to invalidate.
* *** empty log message ***Gerd Moellmann2001-07-231-0/+4
|
* *** empty log message ***Gerd Moellmann2001-07-231-0/+5
|
* (toplevel) [STDC_HEADERS]: Include float.h.Gerd Moellmann2001-07-231-1/+8
| | | | | (MAX_10_EXP): New macro. (Fformat): Use it.
* (code_convert_region): Handle the multibyte case ifGerd Moellmann2001-07-231-4/+21
| | | | decoding ends with CODING_FINISH_INSUFFICIENT_SRC.
* *** empty log message ***Gerd Moellmann2001-07-201-0/+3
|
* *** empty log message ***Gerd Moellmann2001-07-201-0/+4
|
* (struct face): Change type of `stipple' toGerd Moellmann2001-07-201-2/+3
| | | | int; it's an ID.
* (x_fill_stretch_glyph_string): Remove an assertion.Gerd Moellmann2001-07-201-1/+3
|
* *** empty log message ***Gerd Moellmann2001-07-191-0/+3
|
* (update_window): Don't set the cursor at the endGerd Moellmann2001-07-191-6/+28
| | | | of the update if display update has been paused.
* (syms_of_composite): Renamed fromGerd Moellmann2001-07-192-1/+7
| | | | syms_of_composition.
* * fns.c (Fset_char_table_default): Check that a charset is defined before ↵Ken Raeburn2001-07-182-1/+6
| | | | checking its dimension.
* Fix a typo.Gerd Moellmann2001-07-181-1/+1
|