]> code.delx.au - gnu-emacs/blobdiff - src/ChangeLog
*** empty log message ***
[gnu-emacs] / src / ChangeLog
index 3a7e53ffc07ed7731444baac9d6edc0703d6e04b..e4a0b96182e1e92ef2fb22fc1a155a6fad078d6a 100644 (file)
@@ -1,3 +1,148 @@
+2002-11-06  Richard M. Stallman  <rms@gnu.org>
+
+       * xterm.c (x_term_init): Use turn_on_atimers, not start_polling
+       and stop_polling.
+
+       * process.c (wait_reading_process_input):
+       Test POLLING_PROBLEM_IN_SELECT, not hpux.
+       Avoid initialization for auto Lisp_Object var.
+
+       * s/hpux11.h (POLLING_PROBLEM_IN_SELECT): Add #undef.
+
+       * s/hpux10.h (POLLING_PROBLEM_IN_SELECT): Defined.
+
+2002-11-05  Richard M. Stallman  <rms@gnu.org>
+
+       * s/sol2-5.h (BROKEN_SIGIO): Turn off the #undef.
+
+       * callint.c (Fcall_interactively): New local filter_specs.
+       (Fcall_interactively): Check for progn as well as let.
+       Add a gcpro.
+       (Qprogn): New variable.
+       (syms_of_callint): Staticpro and init Qprogn.
+
+2002-11-04  John Paul Wallington  <jpw@shootybangbang.com>
+
+       * lread.c (Feval_buffer): Doc fix.
+
+2002-11-04  Dave Love  <fx@gnu.org>
+
+       * keyboard.c (read_char): Always translate iff
+       Vkeyboard_translate_table is a char table and c is valid.
+
+       * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
+       and fix C types.
+
+2002-11-03  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * xdisp.c (single_display_prop_intangible_p): Strings are intangible.
+
+       * editfns.c (get_pos_property): Don't hardcode Qfield.
+
+       * keyboard.c (adjust_point_for_property): Handle `display' prop on
+       overlays.  Also handle `invisible' prop.
+
+2002-11-02  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * coding.c (decode_coding_emacs_mule, decode_coding_iso2022)
+       (decode_coding_sjis_big5, decode_eol): Allow lone \r in DOS EOL.
+
+2002-11-01  Andreas Schwab  <schwab@suse.de>
+
+       * editfns.c (Fmessage): Revert last change to properly handle %%
+       format.
+
+2002-11-01  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * xmenu.c (unuse_menu_items): New fun.
+       (menu_items_inuse): New var.
+       (syms_of_xmenu): Initialize it.
+       (init_menu_items): Use it to detect re-entrance.
+       (Fx_popup_menu, Fx_popup_dialog, set_frame_menubar): Reset it when done.
+       (Fx_popup_menu): Remove spurious XSETFRAME.
+
+       * editfns.c (find_field): Make an exception for nil fields.
+
+2002-11-01  Dave Love  <fx@gnu.org>
+
+       * m/gec63.h: Deleted.
+
+2002-10-31  Dave Love  <fx@gnu.org>
+
+       * xterm.c (XTread_socket): Fix last change.
+       (xaw_scroll_callback): Cast call_data to long to avoid warning.
+
+2002-10-31  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * process.c (Fformat_network_address): Fix int/Lisp_Object mixup.
+
+2002-10-30  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * editfns.c (overlays_around, get_pos_property): New funs.
+       (find_field): Use them.
+       Also be careful not to modify POS before its last use.
+       (Fmessage): Don't Fformat if there's nothing to format.
+
+2002-10-30  Dave Love  <fx@gnu.org>
+
+       * process.c [HAVE_SYS_WAIT]: Include sys/wait.h.
+       [HAVE_PTY_H]; Include pty.h.
+
+       * lread.c (Fload) <!load_dangerous_libraries>: Close fd.
+
+       * xterm.c (Qeql): Declare.
+       (Vx_keysym_table): New.
+       (syms_of_xterm): Initialize it.
+       (XTread_socket): Use it.  Deal with ASCII keysyms.
+       (XSetIMValues) [HAVE_X11R6]: Prototype.
+
+       * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extended.
+       (lispy_kana_keys): Comment out.
+       (make_lispy_event) [XK_kana_A]: Comment out.
+       (modify_event_symbol) <sizeof (long) == sizeof (EMACS_INT)>:
+       Fix sprintf call.
+
+       * s/osf5-0.h (C_SWITCH_SYSTEM): Revert last change (fixed by
+       regexp.h change).
+       (TERMINFO, LIBS_TERMCAP): Define.
+
+       * s/usg5-4.h (bcopy, bzero): Define conditional on HAVE_BCOPY.
+       (bcmp): Define conditional on HAVE_BCMP.
+       (NO_SIOCTL_H): Don't define.
+       (TIOCSIGSEND): Don't make conditional on IRIX6.
+
+       * s/sol2-5.h: Don't include strings.h.
+       (bcopy, bzero, bcmp) [HAVE_BCOPY]: Don't undef.
+
+       * s/irix6-0.h (IRIX6): Don't define.
+       (bcopy, bcmp, bzero): Don't undef.
+
+       * s/irix6-5.h: Don't include strings.h.
+       (IRIX6): Don't define.
+       (bcopy, bcmp, bzero): Don't undef.
+
+       * syntax.c (Fforward_comment): Doc fix.
+
+2002-10-29  Kim F. Storm  <storm@cua.dk>
+
+       * process.c (Fsignal_process): Allow PROCESS to be specified by
+       name in addition to pid (as integer or string).
+
+2002-10-28  Harald Maier  <Harald.Maier.BW@t-online.de>  (tiny change)
+
+       * w32heap.c: Don't redefine _heap_init and _heap_term on MSVC 7 build
+       environments.
+
+2002-10-27  Kim F. Storm  <storm@cua.dk>
+
+       * xterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
+
+       * w32term.c (note_mouse_highlight): Don't use mouse-face if hidden.
+
+       * msdos.c (IT_note_mouse_highlight): Don't use mouse-face if hidden.
+
+       * macterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
+
 2002-10-26  Richard M. Stallman  <rms@gnu.org>
 
        * editfns.c (Fformat): Detect invalid format letters for floats.
 
        * fns.c (Flength): Doc fix.
 
+2002-10-04  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * keyboard.c (keyremap): New struct.
+       (read_key_sequence): Use it: globally replace keytran_foo with
+       keytran.foo and fkey_foo with fkey.foo.  Rename temp vars
+       keytran_next and fkey_next to just `next'.
+
 2002-10-04  Steven Tamm  <steventamm@mac.com>
 
        * macterm.c (keycode_to_xkeysym_table): Change return to be
-       treated like an X keysym
+       treated like an X keysym.
 
 2002-10-03  Jan D.  <jan.h.d@swipnet.se>
 
        * w32fns.c (Qbox): Make extern.
        (syms_of_w32fns): Remove initialization of Qbox.
 
-       * xfns.c (Fx_open_connection): Fix error message. Patch from Rune
-       Kleveland <runekl@viewpoint.no>.
+2002-08-30  Rune Kleveland  <runekl@viewpoint.no>  (tiny change)
+
+       * xfns.c (Fx_open_connection): Fix error message.
 
 2002-08-30  Kim F. Storm  <storm@cua.dk>