summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* (Fmatch_data): If no matching done yet, return Qnil.Karl Heuer1996-07-141-1/+1
|
* (sys_gmtime): Don't assume year < 2000.Karl Heuer1996-07-141-1/+1
|
* (wait_reading_process_input) [hpux]: Workaround forKarl Heuer1996-07-131-1/+17
| | | | annoying messages.
* (Fvertical_motion): Doc fix.Karl Heuer1996-07-131-11/+16
|
* (w32_read_socket): Remove unused WM_ERASEBKGND code.Karl Heuer1996-07-121-21/+1
| | | | | No need to erase background now on (delayed) WM_PAINT. Move WM_PALETTECHANGED processing to raw input thread.
* (win32_wnd_proc): Handle WM_ERASEBKGND andKarl Heuer1996-07-121-11/+27
| | | | WM_PALETTECHANGED messages inline (as they should be).
* (menu_bar_item): Skip menu-bar equiv keys dataKarl Heuer1996-07-121-0/+4
| | | | to get just the keymap.
* [__GNUC__] (C_DEBUG_SWITCH): New definition.Karl Heuer1996-07-121-0/+6
|
* (lim_data): Make this an unsigned long.Karl Heuer1996-07-111-1/+1
|
* Initial revisionKarl Heuer1996-07-111-0/+8
|
* (XTread_socket): Add #ifdef for previous change.Karl Heuer1996-07-111-1/+3
|
* (syms_of_buffer): Doc fix.Karl Heuer1996-07-111-3/+3
|
* [_LIBC] (re_comp, re_exec): Use `weak_function' keyword in defn instead ofRoland McGrath1996-07-091-9/+9
| | | | weak_symbol macro after.
* [_LIBC]: Use weak_extern instead of weak_symbol for __data_start.Roland McGrath1996-07-081-2/+2
|
* Enable use of ncurses library cleanly.Michael I. Bushnell1996-07-071-0/+6
|
* Undo previous change.Karl Heuer1996-07-071-7/+8
| | | | | (XTread_socket): Better way to avoid sending toolkit-specific events to Emacs.
* (popup_get_selection): For a ButtonRelease on the properKarl Heuer1996-07-071-3/+10
| | | | display, don't queue it, and always deactivate the menu.
* (IT_menu_display): Display control characters as ^X.Karl Heuer1996-07-071-3/+31
| | | | | (XMenuAddPane, XMenuAddSelection): Adjust menu width for control characters (displayed as ^X).
* (file_name_completion): Set `stat' flags to avoidKarl Heuer1996-07-071-0/+19
| | | | | computing expensive fields in struct stat (makes filename completion much faster).
* (Fcopy_file): Use st_ino under DJGPP v2 and later toKarl Heuer1996-07-071-4/+4
| | | | | | | prevent copying file into itself. (check_executable): DJGPP v2 `stat' doesn't need to be augmented in case of executable files. (Ffile_modes): Use `stat' results as is in DJGPP v2 and later.
* Initial revisionKarl Heuer1996-07-072-0/+14
|
* (dostounix_filename): On caseless filesystems, downcase the filename.Miles Bader1996-07-071-4/+11
| | | | | | (unixtodos_filename): Downcase the drive letter. (init_environment): Downcase the pathnames in the environment only when running on caseless filesystems.
* (DRIVE_LETTER) [WINDOWSNT]: Lower-case drive letters.Miles Bader1996-07-071-6/+4
|
* (x_set_mouse_pixel_position): Adjust coords by frame position.Miles Bader1996-07-071-19/+16
| | | | (x_set_mouse_position): Call x_set_mouse_pixel_position.
* (normalize_filename): Always lower-case drive letters, even on systemsMiles Bader1996-07-071-7/+33
| | | | | | | | that preserve case in filenames. (sys_rename): Do not delete newname if only changing case. On Windows 95, use our version of mktemp (not the MSVC version) and give the temp name a long extension to ensure the final rename works as expected.
* (Fcall_process) [MSDOS]:Miles Bader1996-07-061-4/+13
| | | | | | | | | Initialize fd[0]; unlink `tempfile' in case of errors. Make the `tempfile' parameter passed to `report_file_error' be a Lisp string. (Fcall_process): When fd_error is negative, don't close fd[0] if it's same as filefd. If stderr is redirected to NULL_DEVICE, make `report_file_error' print the name of device. Make the arguments a cons cell.
* (Fvertical_motion): Doc fix.Miles Bader1996-07-061-2/+4
|
* (XTread_socket): Use lw_tookit_related_event_p to avoid sendingMiles Bader1996-07-041-0/+7
| | | | toolkit-specific events to Emacs.
* formatting tweaksmake-3-75make-3-74-7make-3-74-6make-3-74-5Mike Stump1996-07-031-2/+2
|
* (msdos_downcase_filename):Miles Bader1996-07-021-0/+11
| | | | | Always lower-case drive letters, even on systems that preserve case in filenames.
* (DRIVE_LETTER) [MSDOS]: Lower-case drive letters.Miles Bader1996-07-021-1/+4
|
* Delete spurious period from last change.Miles Bader1996-07-021-1/+1
|
* (x_clear_frame_selections): Don't call redisplay_preserve_echo_area here.Miles Bader1996-07-021-0/+6
|
* (HAVE_X11R4, HAVE_X11R5):Miles Bader1996-07-021-4/+0
| | | | Definitions deleted since xterm.h and config.h should take care of them.
* (LIB_MOTIF): Fix typo.Richard M. Stallman1996-06-301-1/+1
|
* (main): Add `GNU Emacs' to the response to --version.Richard M. Stallman1996-06-291-1/+1
|
* (Fx_create_frame): Gcpro parms, parent, and name.Richard M. Stallman1996-06-291-4/+8
|
* (print): Obey Vprint_length for vectors, bitvectors.Richard M. Stallman1996-06-291-0/+12
|
* (GETPGRP_NO_ARG): Always define it, if __GNU_LIBRARY__.Richard M. Stallman1996-06-291-1/+6
|
* (make_frame_without_minibuffer): GCPRO the frame f.Richard M. Stallman1996-06-281-2/+9
|
* (Fmove_to_column): Go after invis chars at the goal column.Richard M. Stallman1996-06-281-1/+7
|
* (AMPERSAND_FULL_NAME): Defined by default.Richard M. Stallman1996-06-281-1/+2
|
* (redisplay_internal): Use last_had_star to decideRichard M. Stallman1996-06-281-9/+21
| | | | | | | whether to update the mode line to update the star. (update_menu_bar): Likewise. Also, don't set w->update_mode_line for frames that use set_frame_menubar. (redisplay_internal, mark_window_display_accurate): Set last_had_star.
* (struct window): New field, last_had_star.Richard M. Stallman1996-06-281-0/+3
|
* (LIB_MOTIF): New definition.Richard M. Stallman1996-06-281-0/+5
|
* (standard_args): Delete `-rn' option.Richard M. Stallman1996-06-281-1/+0
|
* Add `dir ../lwlib'.Richard M. Stallman1996-06-281-0/+3
|
* (check_executable): Use euidaccess, not eaccess.Richard M. Stallman1996-06-281-2/+2
|
* (HAVE_EUIDACCESS): This replaces HAVE_EACCESS.Richard M. Stallman1996-06-281-1/+1
|
* Don't define HAVE_X11R5 here.Richard M. Stallman1996-06-281-4/+1
|