diff options
author | Eli Zaretskii <eliz@gnu.org> | 2011-03-12 14:03:24 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2011-03-12 14:03:24 +0200 |
commit | 058e5dad0e18c6c67cf8ad7681f98f0768b60f31 (patch) | |
tree | 74405be16e7109eff6f82029e93c537e58a100bc /src/deps.mk | |
parent | 7ac80be95aaa92eacb454d4fa6aa3d2f56058978 (diff) | |
download | emacs-058e5dad0e18c6c67cf8ad7681f98f0768b60f31.tar.gz |
Make termcap.c implementations consistent with tparam.h prototypes.
src/termcap.c [MSDOS]: Include "msdos.h.
(find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
Constify `char *' arguments and their references according to
prototypes in tparam.h.
src/deps.mk (termcap.o): Depend on tparam.h and msdos.h.
Diffstat (limited to 'src/deps.mk')
-rw-r--r-- | src/deps.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deps.mk b/src/deps.mk index 2b162b07bb8..d3a21cfe628 100644 --- a/src/deps.mk +++ b/src/deps.mk @@ -191,7 +191,7 @@ term.o: term.c termchar.h termhooks.h termopts.h lisp.h globals.h $(config_h) \ cm.h frame.h disptab.h keyboard.h character.h charset.h coding.h ccl.h \ xterm.h msdos.h window.h keymap.h blockinput.h atimer.h systime.h \ systty.h syssignal.h tparam.h $(INTERVALS_H) buffer.h ../lib/unistd.h -termcap.o: termcap.c lisp.h $(config_h) +termcap.o: termcap.c lisp.h tparam.h msdos.h $(config_h) terminal.o: terminal.c frame.h termchar.h termhooks.h charset.h coding.h \ keyboard.h lisp.h globals.h $(config_h) dispextern.h composite.h systime.h \ msdos.h |