diff options
| author | Paul Eggert | 2011-06-18 18:31:41 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-06-18 18:31:41 -0700 |
| commit | e4d29b3382b1a6f3b09e9d5d073493e909540593 (patch) | |
| tree | b954b8c59d8f50a9d720170f0d540f5091c7453c /src/ChangeLog | |
| parent | cbeff735d291da31ca3c5ae61d2c5698b62b26e8 (diff) | |
| download | emacs-e4d29b3382b1a6f3b09e9d5d073493e909540593.tar.gz emacs-e4d29b3382b1a6f3b09e9d5d073493e909540593.zip | |
* lread.c (invalid_syntax): Omit length argument.
All uses changed. This doesn't fix a bug, but it simplifies the
code away from its former Hollerith-constant appearance, and it's
one less 'int' to worry about when looking at integer-overflow issues.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 45fe3194744..2016669efc1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2011-06-19 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-06-19 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * lread.c (invalid_syntax): Omit length argument. | ||
| 4 | All uses changed. This doesn't fix a bug, but it simplifies the | ||
| 5 | code away from its former Hollerith-constant appearance, and it's | ||
| 6 | one less 'int' to worry about when looking at integer-overflow issues. | ||
| 7 | |||
| 3 | * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr). | 8 | * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr). |
| 4 | This didn't break anything, but it didn't help either. | 9 | This didn't break anything, but it didn't help either. |
| 5 | It's confusing to put a bogus integer in a place where the actual | 10 | It's confusing to put a bogus integer in a place where the actual |