/[emacs]/emacs/lisp/ChangeLog
ViewVC logotype

Diff of /emacs/lisp/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6613 by jpb, Wed Nov 17 19:30:19 2004 UTC revision 1.6614 by monnier, Wed Nov 17 19:37:24 2004 UTC
# Line 1  Line 1 
1  2004-11-17  Jay Belanger  <belanger@truman.edu>  2004-11-17  Jay Belanger  <belanger@truman.edu>
         * calc/calc-alg.el (calc-poly-div):  Made calc-poly-div-remainder  
         a local variable.  
2    
3          (math-eval-rules-cache, math-eval-rules-cache-other):  Declared          * calc/calc-alg.el (calc-poly-div): Make calc-poly-div-remainder
4          them.          a local variable.
5    
6          (math-top-only):  New variable.          (math-eval-rules-cache, math-eval-rules-cache-other): Declare them.
7          (math-simplify, math-simplify-step):  Replaced variable top-only by  
8            (math-top-only): New variable.
9            (math-simplify, math-simplify-step): Replace variable top-only by
10          declared variable math-top-only.          declared variable math-top-only.
11    
12          (math-simplify-expr):  Declared it.          (math-simplify-expr): Declare it.
13          Replaced argument expr in all calls of math-defsimplify by          Replaced argument expr in all calls of math-defsimplify by
14          math-simplify-expr.          math-simplify-expr.
15          (math-simplify-plus, math-simplify-times, math-simplify-divide)          (math-simplify-plus, math-simplify-times, math-simplify-divide)
16          (math-simplify-divisor, math-simplify-one-divisor)          (math-simplify-divisor, math-simplify-one-divisor)
17          (math-simplify-mod, math-simplify-ineq, math-simplify-sqrt)          (math-simplify-mod, math-simplify-ineq, math-simplify-sqrt)
18          (math-simplify-pow):  Replaced variable expr by declared variable          (math-simplify-pow): Replace variable expr by declared variable
19          math-simplify-expr.          math-simplify-expr.
20    
21          (math-simplify-divisor):  Removed local variables temp and op.          (math-simplify-divisor): Remove local variables temp and op.
22          (math-simplify-one-divisor):  Made temp and op local variables.          (math-simplify-one-divisor): Make temp and op local variables.
23    
24          (math-simplify-divisor-nover, math-simplify-divisor-dover):  New          (math-simplify-divisor-nover, math-simplify-divisor-dover):
25          variables.          New variables.
26          (math-simplify-divisor, math-simplify-one-divisor):  Replaced          (math-simplify-divisor, math-simplify-one-divisor):
27          variables nover and dover by declared variables.          Replace variables nover and dover by declared variables.
28    
29          (math-expr-subst-new, math-expr-subst-old):  New variables.          (math-expr-subst-new, math-expr-subst-old): New variables.
30          (math-expr-subst, math-expr-subst-rec):  Replaced variables new          (math-expr-subst, math-expr-subst-rec): Replace variables new
31          and old by declared variables.          and old by declared variables.
32    
33          (math-is-poly-degree, math-is-poly-loose):  New variables.          (math-is-poly-degree, math-is-poly-loose): New variables.
34          (math-is-polynomial, math-is-poly-rec):  Replaced variables degree          (math-is-polynomial, math-is-poly-rec): Replace variables degree
35          and loose by declared variables.          and loose by declared variables.
36    
37          (math-poly-base-const-ok, math-poly-base-pred): New variables.          (math-poly-base-const-ok, math-poly-base-pred): New variables.
38          (math-polynomial-base, math-polynomial-base-rec):  Replaced          (math-polynomial-base, math-polynomial-base-rec):
39          variables const-ok and mpb-pred by declared variables.          Replace variables const-ok and mpb-pred by declared variables.
40    
41          * calc/calc-poly.el (calc-poly-div-remainder):  Declared it.          * calc/calc-poly.el (calc-poly-div-remainder): Declare it.
42    
43          * calc/calc-ext.el (math-defsimplify):  Changed the argument in          * calc/calc-ext.el (math-defsimplify): Change the argument in
44          the created function to math-simplify-expr.          the created function to math-simplify-expr.
45    
46          * calc/calc-units.el (math-simplify-expr):  Declared it.          * calc/calc-units.el (math-simplify-expr): Declare it.
47          Replaced argument expr in all calls of math-defsimplify by          Replace argument expr in all calls of math-defsimplify by
48          math-simplify-expr.          math-simplify-expr.
49          (math-simplify-units-prod):  Replaced variable expr by declared          (math-simplify-units-prod): Replace variable expr by declared
50          variable math-simplify-expr.          variable math-simplify-expr.
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    
57  2004-11-17  Miles Bader  <miles@gnu.org>  2004-11-17  Miles Bader  <miles@gnu.org>
58    
59          * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el          * progmodes/idlw-shell.el, progmodes/idlw-toolbar.el
# Line 66  Line 71 
71          * international/iso-cvt.el (iso-tex2iso-trans-tab):          * international/iso-cvt.el (iso-tex2iso-trans-tab):
72          Discard spaces after \i according to TeX rules.          Discard spaces after \i according to TeX rules.
73    
74          * international/mule.el (set-buffer-file-coding-system):          * international/mule.el (set-buffer-file-coding-system):
75          New arg NOMODIFY.          New arg NOMODIFY.
76          (after-insert-file-set-coding): Pass that new arg.          (after-insert-file-set-coding): Pass that new arg.
77          Prevent set-buffer-multibyte from trying to lock the file.          Prevent set-buffer-multibyte from trying to lock the file.
# Line 83  Line 88 
88    
89          * subr.el (map-keymap-internal): New function.          * subr.el (map-keymap-internal): New function.
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    
96  2004-11-14  Frederic Han  <han@math.jussieu.fr>  (tiny change)  2004-11-14  Frederic Han  <han@math.jussieu.fr>  (tiny change)
97    
98          * international/iso-cvt.el (iso-tex2iso-trans-tab):          * international/iso-cvt.el (iso-tex2iso-trans-tab):
99          Discard whitespace after macro \i when converting it.          Discard whitespace after macro \i when converting it.
100    
101  2004-11-16  Juri Linkov  <juri@jurta.org>  2004-11-16  Juri Linkov  <juri@jurta.org>

Legend:
Removed from v.1.6613  
changed lines
  Added in v.1.6614

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26