diff options
| author | Stefan Monnier | 2004-11-17 19:37:24 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-11-17 19:37:24 +0000 |
| commit | 6abf3a2767ac6f6639cbdca581cb09328451dc5c (patch) | |
| tree | ae81fa333d4c005f390d6b2827baefcde42c2899 | |
| parent | 00a789bdc58f219a3595723756cdfd3f1873d472 (diff) | |
| download | emacs-6abf3a2767ac6f6639cbdca581cb09328451dc5c.tar.gz emacs-6abf3a2767ac6f6639cbdca581cb09328451dc5c.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 66 | ||||
| -rw-r--r-- | src/ChangeLog | 38 |
2 files changed, 63 insertions, 41 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 725a996174c..14dc9454b26 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,54 +1,59 @@ | |||
| 1 | 2004-11-17 Jay Belanger <belanger@truman.edu> | 1 | 2004-11-17 Jay Belanger <belanger@truman.edu> |
| 2 | * calc/calc-alg.el (calc-poly-div): Made calc-poly-div-remainder | ||
| 3 | a local variable. | ||
| 4 | 2 | ||
| 5 | (math-eval-rules-cache, math-eval-rules-cache-other): Declared | 3 | * calc/calc-alg.el (calc-poly-div): Make calc-poly-div-remainder |
| 6 | them. | 4 | a local variable. |
| 7 | 5 | ||
| 8 | (math-top-only): New variable. | 6 | (math-eval-rules-cache, math-eval-rules-cache-other): Declare them. |
| 9 | (math-simplify, math-simplify-step): Replaced variable top-only by | 7 | |
| 8 | (math-top-only): New variable. | ||
| 9 | (math-simplify, math-simplify-step): Replace variable top-only by | ||
| 10 | declared variable math-top-only. | 10 | declared variable math-top-only. |
| 11 | 11 | ||
| 12 | (math-simplify-expr): Declared it. | 12 | (math-simplify-expr): Declare it. |
| 13 | Replaced argument expr in all calls of math-defsimplify by | 13 | Replaced argument expr in all calls of math-defsimplify by |
| 14 | math-simplify-expr. | 14 | math-simplify-expr. |
| 15 | (math-simplify-plus, math-simplify-times, math-simplify-divide) | 15 | (math-simplify-plus, math-simplify-times, math-simplify-divide) |
| 16 | (math-simplify-divisor, math-simplify-one-divisor) | 16 | (math-simplify-divisor, math-simplify-one-divisor) |
| 17 | (math-simplify-mod, math-simplify-ineq, math-simplify-sqrt) | 17 | (math-simplify-mod, math-simplify-ineq, math-simplify-sqrt) |
| 18 | (math-simplify-pow): Replaced variable expr by declared variable | 18 | (math-simplify-pow): Replace variable expr by declared variable |
| 19 | math-simplify-expr. | 19 | math-simplify-expr. |
| 20 | 20 | ||
| 21 | (math-simplify-divisor): Removed local variables temp and op. | 21 | (math-simplify-divisor): Remove local variables temp and op. |
| 22 | (math-simplify-one-divisor): Made temp and op local variables. | 22 | (math-simplify-one-divisor): Make temp and op local variables. |
| 23 | 23 | ||
| 24 | (math-simplify-divisor-nover, math-simplify-divisor-dover): New | 24 | (math-simplify-divisor-nover, math-simplify-divisor-dover): |
| 25 | variables. | 25 | New variables. |
| 26 | (math-simplify-divisor, math-simplify-one-divisor): Replaced | 26 | (math-simplify-divisor, math-simplify-one-divisor): |
| 27 | variables nover and dover by declared variables. | 27 | Replace variables nover and dover by declared variables. |
| 28 | 28 | ||
| 29 | (math-expr-subst-new, math-expr-subst-old): New variables. | 29 | (math-expr-subst-new, math-expr-subst-old): New variables. |
| 30 | (math-expr-subst, math-expr-subst-rec): Replaced variables new | 30 | (math-expr-subst, math-expr-subst-rec): Replace variables new |
| 31 | and old by declared variables. | 31 | and old by declared variables. |
| 32 | 32 | ||
| 33 | (math-is-poly-degree, math-is-poly-loose): New variables. | 33 | (math-is-poly-degree, math-is-poly-loose): New variables. |
| 34 | (math-is-polynomial, math-is-poly-rec): Replaced variables degree | 34 | (math-is-polynomial, math-is-poly-rec): Replace variables degree |
| 35 | and loose by declared variables. | 35 | and loose by declared variables. |
| 36 | 36 | ||
| 37 | (math-poly-base-const-ok, math-poly-base-pred): New variables. | 37 | (math-poly-base-const-ok, math-poly-base-pred): New variables. |
| 38 | (math-polynomial-base, math-polynomial-base-rec): Replaced | 38 | (math-polynomial-base, math-polynomial-base-rec): |
| 39 | variables const-ok and mpb-pred by declared variables. | 39 | Replace variables const-ok and mpb-pred by declared variables. |
| 40 | 40 | ||
| 41 | * calc/calc-poly.el (calc-poly-div-remainder): Declared it. | 41 | * calc/calc-poly.el (calc-poly-div-remainder): Declare it. |
| 42 | 42 | ||
| 43 | * calc/calc-ext.el (math-defsimplify): Changed the argument in | 43 | * calc/calc-ext.el (math-defsimplify): Change the argument in |
| 44 | the created function to math-simplify-expr. | 44 | the created function to math-simplify-expr. |
| 45 | 45 | ||
| 46 | * calc/calc-units.el (math-simplify-expr): Declared it. | 46 | * calc/calc-units.el (math-simplify-expr): Declare it. |
| 47 | Replaced argument expr in all calls of math-defsimplify by | 47 | Replace argument expr in all calls of math-defsimplify by |
| 48 | math-simplify-expr. | 48 | math-simplify-expr. |
| 49 | (math-simplify-units-prod): Replaced variable expr by declared | 49 | (math-simplify-units-prod): Replace variable expr by declared |
| 50 | variable math-simplify-expr. | 50 | variable math-simplify-expr. |
| 51 | 51 | ||
| 52 | 2004-11-17 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 53 | |||
| 54 | * buff-menu.el (list-buffers-noselect): Massage to fit in 80 columns. | ||
| 55 | Replace mapcar->dolist, format->string. | ||
| 56 | |||
| 52 | 2004-11-17 Miles Bader <miles@gnu.org> | 57 | 2004-11-17 Miles Bader <miles@gnu.org> |
| 53 | 58 | ||
| 54 | * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el | 59 | * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el |
| @@ -66,7 +71,7 @@ | |||
| 66 | * international/iso-cvt.el (iso-tex2iso-trans-tab): | 71 | * international/iso-cvt.el (iso-tex2iso-trans-tab): |
| 67 | Discard spaces after \i according to TeX rules. | 72 | Discard spaces after \i according to TeX rules. |
| 68 | 73 | ||
| 69 | * international/mule.el (set-buffer-file-coding-system): | 74 | * international/mule.el (set-buffer-file-coding-system): |
| 70 | New arg NOMODIFY. | 75 | New arg NOMODIFY. |
| 71 | (after-insert-file-set-coding): Pass that new arg. | 76 | (after-insert-file-set-coding): Pass that new arg. |
| 72 | Prevent set-buffer-multibyte from trying to lock the file. | 77 | Prevent set-buffer-multibyte from trying to lock the file. |
| @@ -83,9 +88,14 @@ | |||
| 83 | 88 | ||
| 84 | * subr.el (map-keymap-internal): New function. | 89 | * subr.el (map-keymap-internal): New function. |
| 85 | 90 | ||
| 91 | 2004-11-16 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 92 | |||
| 93 | * textmodes/flyspell.el (flyspell-mouse-map): Pop the menu | ||
| 94 | when pressing rather than when releasing mouse-2. Simplify. | ||
| 95 | |||
| 86 | 2004-11-14 Frederic Han <han@math.jussieu.fr> (tiny change) | 96 | 2004-11-14 Frederic Han <han@math.jussieu.fr> (tiny change) |
| 87 | 97 | ||
| 88 | * international/iso-cvt.el (iso-tex2iso-trans-tab): | 98 | * international/iso-cvt.el (iso-tex2iso-trans-tab): |
| 89 | Discard whitespace after macro \i when converting it. | 99 | Discard whitespace after macro \i when converting it. |
| 90 | 100 | ||
| 91 | 2004-11-16 Juri Linkov <juri@jurta.org> | 101 | 2004-11-16 Juri Linkov <juri@jurta.org> |
diff --git a/src/ChangeLog b/src/ChangeLog index f647ecfb5dc..c9c4edd83fc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -11,24 +11,36 @@ | |||
| 11 | * gtkutil.c (xg_get_file_name): Fix typo in | 11 | * gtkutil.c (xg_get_file_name): Fix typo in |
| 12 | HAVE_GTK_FILE_SELECTION_NEW. | 12 | HAVE_GTK_FILE_SELECTION_NEW. |
| 13 | 13 | ||
| 14 | * xmenu.c (x_menu_in_use): Removed. | 14 | * xmenu.c (x_menu_in_use): Remove. |
| 15 | (x_menu_set_in_use): Also set popup_activated_flag. | 15 | (x_menu_set_in_use): Also set popup_activated_flag. |
| 16 | 16 | ||
| 17 | * xfns.c (Fx_file_dialog): Call popup_activated instead of | 17 | * xfns.c (Fx_file_dialog): Call popup_activated instead of |
| 18 | x_menu_in_use. Call x_menu_set_in_use in Motif version also. | 18 | x_menu_in_use. Call x_menu_set_in_use in Motif version also. |
| 19 | 19 | ||
| 20 | * xterm.h: (x_menu_in_use): Removed. | 20 | * xterm.h: (x_menu_in_use): Remove. |
| 21 | 21 | ||
| 22 | 2004-11-16 Richard M. Stallman <rms@gnu.org> | 22 | 2004-11-16 Richard M. Stallman <rms@gnu.org> |
| 23 | 23 | ||
| 24 | * keymap.c (Fmap_keymap): New arg SORT-FIRST. Use | 24 | * keymap.c (Fmap_keymap): New arg SORT-FIRST. |
| 25 | map-keymap-internal to implement that. | 25 | Use map-keymap-internal to implement that. |
| 26 | 26 | ||
| 27 | * indent.c (Fvertical_motion): In batch mode, use vmotion directly. | 27 | * indent.c (Fvertical_motion): In batch mode, use vmotion directly. |
| 28 | 28 | ||
| 29 | 2004-11-16 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 30 | |||
| 31 | * xdisp.c (get_glyph_string_clip_rect, init_glyph_string): Check it's | ||
| 32 | a window before using XWINDOW. | ||
| 33 | |||
| 34 | * window.c (make_window, Fselect_window, make_dummy_parent) | ||
| 35 | (save_window_save): | ||
| 36 | * frame.c (make_frame): | ||
| 37 | * fns.c (concat): Avoid side-effects inside XSETFASTINT's arguments. | ||
| 38 | |||
| 39 | * lisp.h (NILP): Use EQ rather than XFASTINT. | ||
| 40 | |||
| 29 | 2004-11-16 Kim F. Storm <storm@cua.dk> | 41 | 2004-11-16 Kim F. Storm <storm@cua.dk> |
| 30 | 42 | ||
| 31 | * fringe.c (Fdefine_fringe_bitmap): Always set 'h'. Simplify. | 43 | * fringe.c (Fdefine_fringe_bitmap): Always set 'h'. Simplify. |
| 32 | 44 | ||
| 33 | * indent.c (Fvertical_motion): Fix last change. Only reseat when | 45 | * indent.c (Fvertical_motion): Fix last change. Only reseat when |
| 34 | moving backwards. | 46 | moving backwards. |
| @@ -99,12 +111,12 @@ | |||
| 99 | 2004-11-13 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 111 | 2004-11-13 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 100 | 112 | ||
| 101 | * gtkutil.c (xg_file_sel_ok, xg_file_sel_cancel) | 113 | * gtkutil.c (xg_file_sel_ok, xg_file_sel_cancel) |
| 102 | (xg_file_sel_destroy): Removed. | 114 | (xg_file_sel_destroy): Remove. |
| 103 | (xg_file_response_cb, pop_down_file_dialog) | 115 | (xg_file_response_cb, pop_down_file_dialog) |
| 104 | (xg_get_file_name_from_chooser, xg_get_file_name_from_selector): | 116 | (xg_get_file_name_from_chooser, xg_get_file_name_from_selector): |
| 105 | New functions. | 117 | New functions. |
| 106 | (xg_get_file_with_chooser, xg_get_file_with_selection): Take | 118 | (xg_get_file_with_chooser, xg_get_file_with_selection): |
| 107 | new argument func, set it to xg_get_file_name_from_chooser/selector. | 119 | Take new arg func, set it to xg_get_file_name_from_chooser/selector. |
| 108 | Move common code to xg_get_file_name. Return widget created. | 120 | Move common code to xg_get_file_name. Return widget created. |
| 109 | (xg_get_file_name): Set name, transient for, modal and destroy | 121 | (xg_get_file_name): Set name, transient for, modal and destroy |
| 110 | with parent here. Connect response signal to xg_file_response_cb, | 122 | with parent here. Connect response signal to xg_file_response_cb, |
| @@ -121,7 +133,7 @@ | |||
| 121 | (create_and_show_popup_menu, create_and_show_dialog): ... to here. | 133 | (create_and_show_popup_menu, create_and_show_dialog): ... to here. |
| 122 | Move destroy of widget to pop_down_menu. | 134 | Move destroy of widget to pop_down_menu. |
| 123 | (pop_down_menu): BLOCK_INPUT and destroy widget/window. | 135 | (pop_down_menu): BLOCK_INPUT and destroy widget/window. |
| 124 | (xmenu_show): record unwind pop_down_menu. Move XMenuDestroy, | 136 | (xmenu_show): Record unwind pop_down_menu. Move XMenuDestroy, |
| 125 | x_mouse_leave and grabbed = 0 to pop_down_menu. | 137 | x_mouse_leave and grabbed = 0 to pop_down_menu. |
| 126 | 138 | ||
| 127 | 2004-11-13 Kim F. Storm <storm@cua.dk> | 139 | 2004-11-13 Kim F. Storm <storm@cua.dk> |
| @@ -144,8 +156,8 @@ | |||
| 144 | (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P) | 156 | (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P) |
| 145 | (MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P): Use helper macros. | 157 | (MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P): Use helper macros. |
| 146 | 158 | ||
| 147 | * window.c (window_scroll_pixel_based, Frecenter): Use | 159 | * window.c (window_scroll_pixel_based, Frecenter): |
| 148 | move_it_vertically_backward directly. | 160 | Use move_it_vertically_backward directly. |
| 149 | (Frecenter): Fix calculation of new start pos for negative arg. | 161 | (Frecenter): Fix calculation of new start pos for negative arg. |
| 150 | Before, the new start pos was sometimes chosen too far back, so | 162 | Before, the new start pos was sometimes chosen too far back, so |
| 151 | the last line became only partially visible, and thus would be | 163 | the last line became only partially visible, and thus would be |
| @@ -156,7 +168,7 @@ | |||
| 156 | (move_it_vertically_backward): Don't recure to move further back. | 168 | (move_it_vertically_backward): Don't recure to move further back. |
| 157 | (move_it_vertically): Remove superfluous condition. | 169 | (move_it_vertically): Remove superfluous condition. |
| 158 | (move_it_by_lines): Clear last_height when moved 0 lines. | 170 | (move_it_by_lines): Clear last_height when moved 0 lines. |
| 159 | (resize_mini_window): use it.max_extra_line_spacing. | 171 | (resize_mini_window): Use it.max_extra_line_spacing. |
| 160 | (display_tool_bar_line): Clear row->extra_line_spacing. | 172 | (display_tool_bar_line): Clear row->extra_line_spacing. |
| 161 | (try_scrolling): Use move_it_vertically_backward directly. | 173 | (try_scrolling): Use move_it_vertically_backward directly. |
| 162 | (redisplay_window): Likewise. | 174 | (redisplay_window): Likewise. |
| @@ -248,7 +260,7 @@ | |||
| 248 | * Makefile.in (SOME_MACHINE_OBJECTS): Add fringe.o, image.o | 260 | * Makefile.in (SOME_MACHINE_OBJECTS): Add fringe.o, image.o |
| 249 | and w32*.o. | 261 | and w32*.o. |
| 250 | (temacs${EXEEXT}): Generate buildobj.lst when temacs is linked. | 262 | (temacs${EXEEXT}): Generate buildobj.lst when temacs is linked. |
| 251 | (mostlyclean): rm buildobj.lst | 263 | (mostlyclean): Rm buildobj.lst |
| 252 | 264 | ||
| 253 | * makefile.w32-in ($(TEMACS)): Generate buildobj.lst when temacs | 265 | * makefile.w32-in ($(TEMACS)): Generate buildobj.lst when temacs |
| 254 | is linked. | 266 | is linked. |