aboutsummaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* *** empty log message ***Gerd Moellmann2000-12-021-1/+8
|
* *** empty log message ***Eli Zaretskii2000-12-021-0/+5
|
* (Qwrite_region, Qcoding_system_error): Declare extern.Gerd Moellmann2000-12-021-0/+4
|
* (Fmd5): Use a different logic to decide the coding systemGerd Moellmann2000-12-021-40/+83
| | | | to use.
* (Fread_file_name) [DOS_NT]: Don't crash if homedir is NULL.Eli Zaretskii2000-12-021-2/+7
|
* (x_calc_absolute_position): Don't subtract menubar'sGerd Moellmann2000-12-012-16/+29
| | | | | | height for YNegative. (x_calc_absolute_position) [USE_MOTIF]: Use the column widget's height; also see comment there.
* (coordinates_in_window): Handle computations forGerd Moellmann2000-12-012-21/+54
| | | | | | | | positions on the vertical bar and fringes differently for window-system frames. Consider some pixels near the vertical bar as on the bar if the frame doesn't have vertical scroll bars. Associate positions between mode or header lines with the right window, the left one.
* (get_frame_dc): Avoid changing the palette on an invalid frame.Jason Rumney2000-12-012-1/+13
|
* (x_draw_vertical_border): Fix call to w32_fill_rect.Jason Rumney2000-12-011-3/+10
|
* *** empty log message ***Jason Rumney2000-12-011-0/+1
|
* (struct saved_window): Add members orig_top andGerd Moellmann2000-12-012-3/+15
| | | | | | | orig_height. (SAVED_WINDOW_VECTOR_SIZE): Increment to 16. (save_window_save, Fset_window_configuration): Save/restore window's orig_top and orig_height.
* Fix last change.Jason Rumney2000-12-011-2/+1
|
* *** empty log message ***Jason Rumney2000-12-011-0/+4
|
* (echo_area_display): If cursor is in the echo area, makeGerd Moellmann2000-11-302-0/+10
| | | | | sure that the next redisplay displays the minibuffer, so that the cursor will be replaced with what the minibuffer wants.
* Test USE_TOOLKIT_SCROLL_BARS everywhere with #ifdef andGerd Moellmann2000-11-302-9/+16
| | | | | | #ifndef instead of using #if. (XTread_socket) [USE_MOTIF] <KeyPress>: Call XmIsScrollBar only if USE_TOOLKIT_SCROLL_BARS is defined.
* (x_set_cursor_color): Use x_update_cursor instead of x_display_cursor.Jason Rumney2000-11-301-8/+14
|
* *** empty log message ***Jason Rumney2000-11-301-0/+5
|
* *** empty log message ***Gerd Moellmann2000-11-303-0/+594
|
* (Fmd5): Doc fix.Gerd Moellmann2000-11-301-8/+9
|
* *** empty log message ***Gerd Moellmann2000-11-301-0/+9
|
* (Fmd5): New function.Gerd Moellmann2000-11-301-1/+163
| | | | (syms_of_fns): Defsubr md5.
* (obj): Add md5.oGerd Moellmann2000-11-301-1/+1
|
* *** empty log message ***Gerd Moellmann2000-11-301-0/+2
|
* (popup_get_selection): Use xmalloc instead of malloc.Gerd Moellmann2000-11-301-8/+4
|
* *** empty log message ***Gerd Moellmann2000-11-301-0/+6
|
* (x_estimate_mode_line_height): If `mode-line' faceGerd Moellmann2000-11-301-2/+6
| | | | | hasn't a font, use that of the frame, as drawing glyphs does.
* *** empty log message ***Stefan Monnier2000-11-292-1/+5
|
* *** empty log message ***Gerd Moellmann2000-11-291-0/+3
|
* (XTmouse_position) [USE_X_TOOLKIT]: When the mouseGerd Moellmann2000-11-291-0/+9
| | | | is over the menu bar widget, say it's not on the frame.
* (Fx_create_frame): Reintroduce the call toGerd Moellmann2000-11-292-0/+10
| | | | face-set-after-frame-defaults.
* (Fsignal): Reset handling_signal.Gerd Moellmann2000-11-292-2/+6
|
* (add_menu_item): Reset menu item text when changing type to radio button.Jason Rumney2000-11-282-7/+17
|
* *** empty log message ***Gerd Moellmann2000-11-281-0/+2
|
* (wait_for_property_change): Update copyright.Gerd Moellmann2000-11-281-1/+1
|
* *** empty log message ***Gerd Moellmann2000-11-281-0/+14
|
* (Vx_window_horizontal_drag_shape): New variable.Gerd Moellmann2000-11-281-2/+33
| | | | | (syms_of_xfns): DEFVAR_LISP it. (x_set_mouse_color): Create frame's horizontal_drag_cursor.
* (struct x_output): Add member horizontal_drag_cursor.Gerd Moellmann2000-11-281-0/+1
|
* (note_mouse_highlight): Change the cursor shapeGerd Moellmann2000-11-281-2/+6
| | | | on the vertical border between windows.
* (coordinates_in_window): If on a mode or header line,Gerd Moellmann2000-11-281-23/+46
| | | | | | but sufficiently close to its start, return ``on vertical border''. This gives us a way to drag windows horizontally when using toolkit scroll bars.
* *** empty log message ***Gerd Moellmann2000-11-281-0/+5
|
* (text_read_only): New function.Gerd Moellmann2000-11-281-6/+18
| | | | | | (verify_interval_modification): Use it instead of signaling `text-read-only'. This makes it easier to catch this error with a breakpoint.:
* (forward_to_next_line_start): Check for newlines,Gerd Moellmann2000-11-281-2/+2
| | | | not end of line, which includes CR.
* *** empty log message ***Gerd Moellmann2000-11-281-0/+5
|
* *** empty log message ***Kenichi Handa2000-11-281-0/+5
|
* (Ffind_coding_systems_region_internal): Be sure toKenichi Handa2000-11-281-1/+3
| | | | include no-conversion.
* (w32_load_system_font): Always mark font as double byte if codepage is unicode.Jason Rumney2000-11-271-1/+7
|
* *** empty log message ***Jason Rumney2000-11-271-0/+5
|
* *** empty log message ***Gerd Moellmann2000-11-271-0/+4
|
* (forward_to_next_line_start): If already on a newline,Gerd Moellmann2000-11-271-4/+20
| | | | | just consume it to avoid unintended skipping over invisible text below.
* (lucid_event_type_list_p): Handle `help-echo',Gerd Moellmann2000-11-272-2/+11
| | | | `vertical-line', `mode-line' and `header-line' events.