diff options
| author | Gerd Moellmann | 2001-10-12 09:05:51 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-10-12 09:05:51 +0000 |
| commit | beb0990f3b5677c1b4d349563cbe3e0ab9a772a5 (patch) | |
| tree | a0638046cb4fb69339358ded36423f7f76c0fa0f | |
| parent | 6ac080e1e0c4ed7855334278d76600e42cdb3e69 (diff) | |
| download | emacs-beb0990f3b5677c1b4d349563cbe3e0ab9a772a5.tar.gz emacs-beb0990f3b5677c1b4d349563cbe3e0ab9a772a5.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | src/ChangeLog | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 19879d3d371..7d8fcecdd21 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-10-12 Eli Barzilay <eli@barzilay.org> | ||
| 2 | |||
| 3 | * calculator.el (calculator-eng-display): Don't call concat | ||
| 4 | with an integer argument. | ||
| 5 | |||
| 1 | 2001-10-12 Miles Bader <miles@gnu.org> | 6 | 2001-10-12 Miles Bader <miles@gnu.org> |
| 2 | 7 | ||
| 3 | * help-mode.el (help-customize-face): New button-type. | 8 | * help-mode.el (help-customize-face): New button-type. |
diff --git a/src/ChangeLog b/src/ChangeLog index c030c436223..aa2c4f82072 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -58,6 +58,11 @@ | |||
| 58 | 58 | ||
| 59 | 2001-10-11 Gerd Moellmann <gerd@gnu.org> | 59 | 2001-10-11 Gerd Moellmann <gerd@gnu.org> |
| 60 | 60 | ||
| 61 | * lisp.h (FIXNUM_OVERFLOW_P): Cast I to EMACS_INT in comparisons | ||
| 62 | in case I is of some unsigned type, in which case | ||
| 63 | MOST_NEGATIVE_FIXNUM will be converted to unsigned, and the | ||
| 64 | comparison becomes bogus. | ||
| 65 | |||
| 61 | * editfns.c (Fuser_uid, Fuser_real_uid): Use make_fixnum_or_float. | 66 | * editfns.c (Fuser_uid, Fuser_real_uid): Use make_fixnum_or_float. |
| 62 | (Fuser_full_name): Fix bug treating a float as a fixnum. | 67 | (Fuser_full_name): Fix bug treating a float as a fixnum. |
| 63 | 68 | ||