aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog (follow)
Commit message (Collapse)AuthorAgeFilesLines
* (Fdelete_frame): Run delete-frame-hook.Gerd Moellmann2000-10-261-0/+4
|
* *** empty log message ***Kenichi Handa2000-10-261-0/+5
|
* *** empty log message ***Stefan Monnier2000-10-261-0/+23
|
* *** empty log message ***Stefan Monnier2000-10-251-0/+10
|
* (pos_visible_p): Don't add `it.current_y' twice.Miles Bader2000-10-251-0/+4
|
* *** empty log message ***Gerd Moellmann2000-10-251-0/+10
|
* *** empty log message ***Kenichi Handa2000-10-251-0/+7
|
* *** empty log message ***Miles Bader2000-10-251-0/+3
|
* *** empty log message ***Miles Bader2000-10-251-0/+1
|
* (find_field):Miles Bader2000-10-251-0/+9
| | | | | | | Set the field stickiness correctly from overlay fields. Use renamed `text_property_stickiness'. (text_property_stickiness): Renamed from `char_property_stickiness'.
* Use AREF, ASET and ASIZE macros.Stefan Monnier2000-10-251-0/+13
| | | | | | | | | | | | (Fmake_sparse_keymap): Docstring fix. (synkey): Remove. (shadow_lookup): Move up. Handle the case where lookup-key returns an integer. (where_is_internal_1): Drop arg `keymap'. Don't check shadowing. (where_is_internal_2): Adapt to fewer args for where_is_internal_1. (Fwhere_is_internal): Allow `xkeymap' to be a list of keymaps. Simplify/rewrite the keymap-finding code. Add check for command shadowing, using shadow_lookup.
* *** empty log message ***Stefan Monnier2000-10-251-0/+6
|
* (unlock_all_files): Use unlock_file to expand eachGerd Moellmann2000-10-241-0/+5
| | | | buffer's file_truename before trying remove its lock file.
* (directory_files_internal_unwind): New function.Andrew Innes2000-10-241-0/+8
| | | | | | | (directory_files_internal): Use it to ensure closedir is called even if expand-file-name or file-attributes throw, eg. because of a user interrupt. Also enable immediate_quit while calling re_search, so that matching can be interrupted as well.
* (size_window): Prevent setting window's width orGerd Moellmann2000-10-241-0/+3
| | | | height to a negative value (esp. with XSETFASTINT).
* (state_protected_p, last_state_size, last_heapinfo)Gerd Moellmann2000-10-241-0/+9
| | | | | | | | | | [GC_MALLOC_CHECK && GC_PROTECT_MALLOC_STATE]: New variables. (protect_malloc_state) [GC_MALLOC_CHECK && GC_PROTECT_MALLOC_STATE]: New function. (PROTECT_MALLOC_STATE): New macro. (__malloc_initialize, morecore, _malloc_internal) (_free_internal) _realloc_internal): Use it to make _heapinfo read-only outside of gmalloc.
* *** empty log message ***Gerd Moellmann2000-10-241-0/+2
|
* *** empty log message ***Gerd Moellmann2000-10-241-0/+5
|
* *** empty log message ***Eli Zaretskii2000-10-241-1/+6
|
* *** empty log message ***Kenichi Handa2000-10-241-0/+4
|
* (VCENTER_BASELINE_OFFSET): Bias division (see xterm.c comment below).Jason Rumney2000-10-231-0/+10
|
* (emacs_blocked_free) [GC_MALLOC_CHECK]: Handle freeingGerd Moellmann2000-10-231-2/+9
| | | | null.
* (window_scroll_pixel_based, window_scroll_line_based):Miles Bader2000-10-231-0/+7
| | | | | Pass nil for FULLY argument to Fpos_visible_in_window_p to maintain old behavior.
* *** empty log message ***Miles Bader2000-10-231-0/+6
|
* 2000-10-22 15:07:47 ShengHuo ZHU <zsh@cs.rochester.edu>ShengHuo ZHU2000-10-221-0/+5
| | | | | * fns.c (Fbase64_decode_string): The decoded result should be unibyte.
* Initial check-in: changes for building Emacs under Mac OS.Andrew Choi2000-10-221-0/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2000-10-23 Andrew Choi <akochoi@i-cable.com> * dispextern.h [macintosh]: Include macgui.h instead of macterm.h. * dispnew.c [macintosh]: Include macterm.h. (init_display) [macintosh]: initialization for window system. * emacs.c (main) [macintosh]: Call syms_of_textprop, syms_of_macfns, syms_of_ccl, syms_of_fontset, syms_of_xterm, syms_of_search, x_term_init, and init_keyboard before calling init_window_once. Also, call syms_of_xmenu. * fontset.c (syms_of_fontset) [macintosh]: Set ASCII font of default fontset to Monaco. * frame.c [macintosh]: Include macterm.h. Remove declarations of NewMacWindow and DisposeMacWindow. (make_terminal_frame) [macintosh]: Call make_mac_terminal_frame instead of calling NewMacWindow and setting fields of f->output_data.mac directly. Call init_frame_faces. (Fdelete_frame) [macintosh]: Remove unused code. (Fmodify_frame_parameters) [macintosh]: Call x_set_frame_parameters instead of mac_set_frame_parameters. * frame.h [macintosh]: Define menu_bar_lines field in struct frame. Define FRAME_EXTERNAL_MENU_BAR macro. * keyboard.c [macintosh]: Include macterm.h. (kbd_buffer_get_event) [macintosh]: Generate delete_window_event and menu_bar_activate_event type events as for X and NT. (make_lispy_event) [macintosh]: Construct lisp events of type MENU_BAR_EVENT as for X and NT. * sysdep.c [macintosh]: Remove declaration for sys_signal. Include stdlib.h. Remove definition of Vx_bitmap_file_path. (sys_subshell) [macintosh]: Remove definition entirely. (init_sys_modes) [macintosh]: Do not initialize Vwindow_system and Vwindow_system_version here. Remove initialization of Vx_bitmap_file_path. (read_input_waiting): Correct the number of parameters passed to read_socket_hook. Move all Macintosh functions to mac/mac.c. * term.c [macintosh]: Include macterm.h. * window.c [macintosh]: Include macterm.h. * xdisp.c [macintosh]: Include macterm.h. Declare set_frame_menubar and pending_menu_activation. (echo_area_display) [macintosh]: Do not return if terminal frame is the selected frame. (update_menu_bar) [macintosh]: Check FRAME_EXTERNAL_MENU_BAR (f). Allow only the selected frame to set menu bar. (redisplay_window) [macintosh]: Obtain menu bar to redisplay by calling FRAME_EXTERNAL_MENU_BAR (f). (display_menu_bar) [macintosh]: Check FRAME_MAC_P (f). * xfaces.c [macintosh]: Include macterm.h. Define x_display_info and check_x. Declare XCreateGC. Define x_create_gc and x_free_gc. Initialize font_sort_order. (x_face_list_fonts) [macintosh]: Use the same code as WINDOWSNT, but call x_list_fonts instead of w32_list_fonts. (Finternal_face_x_get_resource) [macintosh]: Do not call display_x_get_resource. (prepare_face_for_display) [macintosh]: Set xgcv.font. (realize_x_face) [macintosh]: Load the font if it is specified in ATTRS. (syms_of_xfaces) [macintosh]: Initialize Vscalable_fonts_allowed to Qt. * cus-edit.el (custom-button-face): Use 3D look for mac. (custom-button-pressed-face): Likewise. * faces.el (set-face-attributes-from-resources): Handle mac frames in the same way as x and w32 frames. (face-valid-attribute-values): Likewise. (read-face-attribute): Likewise. (defined-colors): Likewise. (color-defined-p): Likewise. (color-values): Likewise. (display-grayscale-p): Likewise. (face-set-after-frame-default): Likewise. (mode-line): Same default face as for x and w32. (tool-bar): Likewise. * frame.el: Remove call to frame-notice-user-settings at end of the file. * info.el (Info-fontify-node): make underlines invisible for mac as for x, pc, and w32 frame types. * term/mac-win.el: New file.
* *** empty log message ***Stefan Monnier2000-10-221-2/+9
|
* (dos_set_window_size): Update screen dimension variables.Eli Zaretskii2000-10-211-0/+5
|
* *** empty log message ***Jason Rumney2000-10-211-0/+5
|
* *** empty log message ***Andrew Innes2000-10-211-0/+70
|
* (Fminibuffer_complete): Call Fpos_visible_in_window_pEli Zaretskii2000-10-211-0/+5
| | | | with an additional argument of Qt.
* (Fpos_visible_in_window_p): Update prototypeMiles Bader2000-10-211-0/+9
|
* (toplevel): Conditionalize compilation of mem_*Gerd Moellmann2000-10-201-0/+5
| | | | functions differently.
* *** empty log message ***Jason Rumney2000-10-201-0/+5
|
* (_malloc_internal) [GC_MALLOC_CHECK]: UseGerd Moellmann2000-10-201-0/+23
| | | | | | _malloc_internal instead of malloc. (_free_internal) [GC_MALLOC_CHECK]: Use _free_internal instead of free.
* [!WINDOWSNT]: Don't apply Solaris 2.5 work-around onAndrew Innes2000-10-201-0/+8
| | | | | | | Windows. (my_strftime) <macro>: Don't use macro arg list when redefining as _strftime_copytm. (my_strftime) <function>: Supply 0 as ut argument.
* *** empty log message ***Jason Rumney2000-10-191-0/+18
|
* (skip_debugger): Prevent a compiler warning.Gerd Moellmann2000-10-191-0/+6
| | | | | (Fcondition_case): Likewise. (Fbacktrace_frame): Use a null interactive spec.
* *** empty log message ***Kenichi Handa2000-10-191-0/+4
|
* Sync with glibc, file version 1.78.Gerd Moellmann2000-10-181-0/+4
| | | | | (my_strftime) [HAVE_TZNAME]: Use `UTC' instead of `GMT' which should no longer be used according to ISO 8601.
* *** empty log message ***Gerd Moellmann2000-10-181-0/+5
|
* (allocate_string) [GC_CHECK_STRING_BYTES]: CallGerd Moellmann2000-10-181-0/+17
| | | | check_string_bytes only if not noninteractive, increase count to 50.
* (adjust_markers_for_delete): Handle before-insertion markers correctly.Miles Bader2000-10-181-0/+5
|
* (pure_bytes_used): Renamed from pureptr.Gerd Moellmann2000-10-171-0/+7
| | | | | | | | (ALIGN): New macro. (pure_alloc): New function. (make_pure_string, pure_cons, make_pure_float, make_pure_vector): Use it. (Fpurecopy): Use PURE_POINTER_P.
* (try_cursor_movement): Use cursor_row_p also whenGerd Moellmann2000-10-171-0/+3
| | | | PT has moved backward.
* (cursor_row_p): Take continued lines into account.Gerd Moellmann2000-10-171-0/+2
|
* (mark_object) [GC_CHECK_STRING_BYTES]: Check validity ofGerd Moellmann2000-10-171-0/+7
| | | | | | | | string's size_byte. (check_string_bytes) [GC_CHECK_STRING_BYTES]: New function. (check_string_bytes_count) [GC_CHECK_STRING_BYTES]: New variable. (allocate_string) [GC_CHECK_STRING_BYTES]: Call it for every 10th string allocated.
* (forward_to_next_line_start): Switch iterator's handlingGerd Moellmann2000-10-171-0/+5
| | | | of selective display off while searching for the next line start.
* *** empty log message ***Kenichi Handa2000-10-171-0/+4
|
* (keymap_memberp): Ensure that nil is not a member.Stefan Monnier2000-10-161-0/+4
|