diff options
| author | Paul Eggert | 2011-03-08 10:26:34 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-03-08 10:26:34 -0800 |
| commit | 50938595880fd87c7dcd39a607cba1b0a7598baf (patch) | |
| tree | e505cffa90ab1c25e1f15c931e6e47c7575b4e2d /src/ChangeLog | |
| parent | 75f8807fe6cc437f58845ec21621614d1dbb7f36 (diff) | |
| download | emacs-50938595880fd87c7dcd39a607cba1b0a7598baf.tar.gz emacs-50938595880fd87c7dcd39a607cba1b0a7598baf.zip | |
* tparam.h: New file.
* term.c, tparam.h: Include it.
* deps.mk (term.o, tparam.o): Depend on tparam.h.
* term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
Move these decls to tparam.h, and make them agree with what
is actually in tparam.c. The previous trick of using incompatible
decls in different modules does not conform to the C standard.
All callers of tparam changed to use tparam's actual API.
* tparam.c (tparam1, tparam, tgoto):
Use const pointers where appropriate.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 107d7d663da..350f01953d4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -87,6 +87,17 @@ | |||
| 87 | 87 | ||
| 88 | * term.c (encode_terminal_code): Now static. Remove unused local. | 88 | * term.c (encode_terminal_code): Now static. Remove unused local. |
| 89 | 89 | ||
| 90 | * tparam.h: New file. | ||
| 91 | * term.c, tparam.h: Include it. | ||
| 92 | * deps.mk (term.o, tparam.o): Depend on tparam.h. | ||
| 93 | * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr): | ||
| 94 | Move these decls to tparam.h, and make them agree with what | ||
| 95 | is actually in tparam.c. The previous trick of using incompatible | ||
| 96 | decls in different modules does not conform to the C standard. | ||
| 97 | All callers of tparam changed to use tparam's actual API. | ||
| 98 | * tparam.c (tparam1, tparam, tgoto): | ||
| 99 | Use const pointers where appropriate. | ||
| 100 | |||
| 90 | 2011-03-06 Chong Yidong <cyd@stupidchicken.com> | 101 | 2011-03-06 Chong Yidong <cyd@stupidchicken.com> |
| 91 | 102 | ||
| 92 | * xdisp.c (redisplay_window): Revert incorrect logic in 2011-03-06 | 103 | * xdisp.c (redisplay_window): Revert incorrect logic in 2011-03-06 |