diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 215 |
1 files changed, 213 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e942fc32eeb..0645765cdde 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,215 @@ | |||
| 1 | 2008-01-29 Miles Bader <miles@gnu.org> | ||
| 2 | |||
| 3 | * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake. | ||
| 4 | |||
| 5 | 2008-01-28 Jason Rumney <jasonr@gnu.org> | ||
| 6 | |||
| 7 | * w32.c (stat): Don't double check for networked drive. | ||
| 8 | |||
| 9 | 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 10 | |||
| 11 | * window.c (run_window_configuration_change_hook): New function. | ||
| 12 | Code extracted from set_window_buffer. Set the selected frame. | ||
| 13 | (set_window_buffer): Use it. | ||
| 14 | * window.h (run_window_configuration_change_hook): Declare. | ||
| 15 | * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer. | ||
| 16 | |||
| 17 | * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM). | ||
| 18 | |||
| 19 | 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 20 | |||
| 21 | * Makefile.in: Remove references to unused macros. | ||
| 22 | |||
| 23 | 2008-01-26 Eli Zaretskii <eliz@gnu.org> | ||
| 24 | |||
| 25 | * w32.c (g_b_init_get_sid_sub_authority) | ||
| 26 | (g_b_init_get_sid_sub_authority_count): New static variables. | ||
| 27 | (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs. | ||
| 28 | (get_sid_sub_authority, get_sid_sub_authority_count): New functions. | ||
| 29 | (init_user_info): Use them to retrieve uid and gid. | ||
| 30 | Use 500/513, the Windows defaults, as Administrator's uid/gid. | ||
| 31 | (fstat): Use pw_uid and pw_gid from the_passwd structure for | ||
| 32 | st_uid and st_gid of the file. | ||
| 33 | |||
| 34 | 2008-01-26 Jason Rumney <jasonr@gnu.org> | ||
| 35 | |||
| 36 | * w32.c (logon_network_drive): New function. | ||
| 37 | (stat): Use it. | ||
| 38 | |||
| 39 | 2008-01-26 Chong Yidong <cyd@stupidchicken.com> | ||
| 40 | |||
| 41 | * xdisp.c (pos_visible_p): Handle the case where charpos falls on | ||
| 42 | invisible text covered with an ellipsis. | ||
| 43 | |||
| 44 | 2008-01-25 Richard Stallman <rms@gnu.org> | ||
| 45 | |||
| 46 | * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and | ||
| 47 | jump back to beginning. Move some other initializations after that. | ||
| 48 | (Qwindow_text_change_functions, Vwindow_text_change_functions): | ||
| 49 | New variables. | ||
| 50 | (syms_of_xdisp): Init them. | ||
| 51 | |||
| 52 | * keyboard.c (read_char): Restore echo_message_buffer after redisplay. | ||
| 53 | |||
| 54 | * buffer.c (reset_buffer_local_variables): | ||
| 55 | Implement `permanent-local-hook'. | ||
| 56 | (Qpermanent_local_hook): New variable. | ||
| 57 | (syms_of_buffer): Init and staticpro it. | ||
| 58 | |||
| 59 | 2008-01-25 Michael Albinus <michael.albinus@gmx.de> | ||
| 60 | |||
| 61 | * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux. | ||
| 62 | |||
| 63 | 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org> | ||
| 64 | |||
| 65 | * fns.c (Fclrhash): Return TABLE. | ||
| 66 | |||
| 67 | 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 68 | |||
| 69 | * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p. | ||
| 70 | (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p | ||
| 71 | is set even without positional changes. | ||
| 72 | (x_scroll_bar_clear): Set bar->redraw_needed_p. | ||
| 73 | |||
| 74 | * macterm.h (struct scroll_bar): New member `redraw_needed_p'. | ||
| 75 | |||
| 76 | 2008-01-23 Jason Rumney <jasonr@gnu.org> | ||
| 77 | |||
| 78 | * xterm.c (handle_one_xevent): Revert to counting chars not bytes. | ||
| 79 | |||
| 80 | * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside | ||
| 81 | the unicode range available in MULE by locale-coding-system. | ||
| 82 | Improve dbcs lead byte detection. Set event timestamp and modifiers | ||
| 83 | earlier. | ||
| 84 | |||
| 85 | 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 86 | |||
| 87 | * mac.c (mac_emacs_pid) [MAC_OSX]: New variable. | ||
| 88 | [MAC_OSX] (init_mac_osx_environment): Initialize it. | ||
| 89 | [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0 | ||
| 90 | when used on child processes. | ||
| 91 | |||
| 92 | 2008-01-21 Michael Albinus <michael.albinus@gmx.de> | ||
| 93 | |||
| 94 | * dbusbind.c (Fdbus_method_return_internal): Rename from | ||
| 95 | Fdbus_method_return. | ||
| 96 | (Fdbus_unregister_object): Move to dbus.el. | ||
| 97 | (Fdbus_call_method, Fdbus_method_return_internal) | ||
| 98 | (Fdbus_send_signal): Improve debug messages. | ||
| 99 | |||
| 100 | 2008-01-20 Martin Rudalics <rudalics@gmx.at> | ||
| 101 | |||
| 102 | * undo.c (undo_inhibit_record_point): New variable. | ||
| 103 | (syms_of_undo): Initialize it. | ||
| 104 | (record_point): Don't record point when undo_inhibit_record_point | ||
| 105 | is set. | ||
| 106 | |||
| 107 | 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 108 | |||
| 109 | * process.c (list_processes_1): Don't use SCHARS on a nil buffer name. | ||
| 110 | |||
| 111 | * xdisp.c (Qauto_hscroll_mode): New var. | ||
| 112 | (syms_of_xdisp): Initialize it. | ||
| 113 | (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each | ||
| 114 | window's buffer. | ||
| 115 | (hscroll_windows): Don't check automatic_hscrolling_p here. | ||
| 116 | |||
| 117 | * window.c (set_window_buffer): Don't unnecessarily reset hscroll and | ||
| 118 | vscroll if we're setting window-buffer to the value it already has. | ||
| 119 | |||
| 120 | 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 121 | |||
| 122 | * m/intel386.h: Remove references to XENIX. | ||
| 123 | |||
| 124 | 2008-01-17 Andreas Schwab <schwab@suse.de> | ||
| 125 | |||
| 126 | * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR | ||
| 127 | instead of HAVE_X86_64_LIB64_DIR. | ||
| 128 | * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise. | ||
| 129 | |||
| 130 | 2008-01-17 Glenn Morris <rgm@gnu.org> | ||
| 131 | |||
| 132 | * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according | ||
| 133 | to HAVE_X86_64_LIB64_DIR. | ||
| 134 | |||
| 135 | 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 136 | |||
| 137 | * s/irix3-3.h: | ||
| 138 | * s/irix4-0.h: | ||
| 139 | * s/386-ix.h: | ||
| 140 | * s/domain.h: | ||
| 141 | * s/hpux9-x11r4.h: | ||
| 142 | * s/hpux9shxr4.h: Remove files for systems no longer supported. | ||
| 143 | |||
| 144 | * sysdep.c: Remove code containing references to symbols defined | ||
| 145 | by unsupported systems. | ||
| 146 | |||
| 147 | 2008-01-16 Glenn Morris <rgm@gnu.org> | ||
| 148 | |||
| 149 | * coding.c (select-safe-coding-system-function): Doc fix. | ||
| 150 | |||
| 151 | 2008-01-15 Glenn Morris <rgm@gnu.org> | ||
| 152 | |||
| 153 | * config.in: Revert 2008-01-13 change: this is a generated file. | ||
| 154 | |||
| 155 | 2008-01-13 Tom Tromey <tromey@redhat.com> | ||
| 156 | |||
| 157 | * lisp.h: Fix typo. | ||
| 158 | |||
| 159 | 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 160 | |||
| 161 | * m/sequent-ptx.h: | ||
| 162 | * m/sequent.h: | ||
| 163 | * s/ptx.h: | ||
| 164 | * s/ptx4-2.h: | ||
| 165 | * s/ptx4.h: Remove files for systems no longer supported. | ||
| 166 | |||
| 167 | * callproc.c (Fcall_process): Fix previous change. | ||
| 168 | |||
| 169 | 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 170 | |||
| 171 | * unexsunos4.c: Remove file, system not supported anymore. | ||
| 172 | |||
| 173 | * src/m/mips.h: | ||
| 174 | * src/m/intel386.h: | ||
| 175 | * callproc.c: | ||
| 176 | * config.in: | ||
| 177 | * ecrt0.c: | ||
| 178 | * emacs.c: | ||
| 179 | * fileio.c: | ||
| 180 | * frame.c: | ||
| 181 | * getpagesize.h: | ||
| 182 | * keyboard.c: | ||
| 183 | * lread.c: | ||
| 184 | * process.c: | ||
| 185 | * puresize.h: | ||
| 186 | * sysdep.c: | ||
| 187 | * systty.h: | ||
| 188 | * syswait.h: | ||
| 189 | * unexec.c: | ||
| 190 | * xdisp.c: | ||
| 191 | * alloc.c: Remove code containing references to symbols defined by | ||
| 192 | unsupported systems. | ||
| 193 | |||
| 194 | 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp> | ||
| 195 | |||
| 196 | * coding.c (detect_coding_mask): Fix previous change. | ||
| 197 | |||
| 198 | 2008-01-10 Chong Yidong <cyd@stupidchicken.com> | ||
| 199 | |||
| 200 | * process.c (wait_reading_process_output): Check for window | ||
| 201 | changes caused by timers. | ||
| 202 | |||
| 203 | 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp> | ||
| 204 | |||
| 205 | * coding.c (detect_coding_iso2022): New arg | ||
| 206 | latin_extra_code_state. Allow Latin extra codes only | ||
| 207 | when *latin_extra_code_state is nonzero. | ||
| 208 | (detect_coding_mask): If there is a NULL byte, detect the encoding | ||
| 209 | as UTF-16 or binary. If Latin extra codes exist, detect the | ||
| 210 | encoding as ISO-2022 only when there's no other proper encoding is | ||
| 211 | found. | ||
| 212 | |||
| 1 | 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 213 | 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 214 | ||
| 3 | * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of | 215 | * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of |
| @@ -1836,8 +2048,7 @@ | |||
| 1836 | 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu> | 2048 | 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu> |
| 1837 | 2049 | ||
| 1838 | * callproc.c (child_setup, getenv_internal): Use the | 2050 | * callproc.c (child_setup, getenv_internal): Use the |
| 1839 | display-environment-variable and term-environment-variable frame | 2051 | display-environment-variable and term-environment-variable frame params. |
| 1840 | params. | ||
| 1841 | (set_initial_environment): Initialise Vprocess_environment. | 2052 | (set_initial_environment): Initialise Vprocess_environment. |
| 1842 | 2053 | ||
| 1843 | * config.in: Disable multi-keyboard support on a mac. | 2054 | * config.in: Disable multi-keyboard support on a mac. |