diff options
| author | Glenn Morris | 2018-01-05 18:50:31 -0800 |
|---|---|---|
| committer | Glenn Morris | 2018-01-05 18:50:31 -0800 |
| commit | d9d6e8a04c81235f805f6625e6d26aaaa6797b9d (patch) | |
| tree | 98dbf6e3d15512328b4e7747aafa419603a070aa /src | |
| parent | f8a07fa6b1cf138d1bf58a966bf4f10fa1dfee1d (diff) | |
| download | emacs-d9d6e8a04c81235f805f6625e6d26aaaa6797b9d.tar.gz emacs-d9d6e8a04c81235f805f6625e6d26aaaa6797b9d.zip | |
; Comments related to src/termcap.c
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 2 | ||||
| -rw-r--r-- | src/termcap.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index e622ade931e..15ca1667d65 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -170,7 +170,7 @@ NOTIFY_LIBS = @NOTIFY_LIBS@ | |||
| 170 | 170 | ||
| 171 | ## -ltermcap, or -lncurses, or -lcurses, or "". | 171 | ## -ltermcap, or -lncurses, or -lcurses, or "". |
| 172 | LIBS_TERMCAP=@LIBS_TERMCAP@ | 172 | LIBS_TERMCAP=@LIBS_TERMCAP@ |
| 173 | ## terminfo.o if TERMINFO, else tparam.o. | 173 | ## terminfo.o if TERMINFO, else (on MS-DOS only: termcap.o +) tparam.o. |
| 174 | TERMCAP_OBJ=@TERMCAP_OBJ@ | 174 | TERMCAP_OBJ=@TERMCAP_OBJ@ |
| 175 | 175 | ||
| 176 | LIBXMU=@LIBXMU@ | 176 | LIBXMU=@LIBXMU@ |
diff --git a/src/termcap.c b/src/termcap.c index ee0b8f5cbb6..4d85323a9ef 100644 --- a/src/termcap.c +++ b/src/termcap.c | |||
| @@ -15,6 +15,9 @@ GNU General Public License for more details. | |||
| 15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
| 16 | along with this program. If not, see <https://www.gnu.org/licenses/>. */ | 16 | along with this program. If not, see <https://www.gnu.org/licenses/>. */ |
| 17 | 17 | ||
| 18 | /* Since 2010-03, 073589f4, Emacs 24.1, this file is only used | ||
| 19 | by the MS-DOS port of Emacs. */ | ||
| 20 | |||
| 18 | /* Emacs config.h may rename various library functions such as malloc. */ | 21 | /* Emacs config.h may rename various library functions such as malloc. */ |
| 19 | #include <config.h> | 22 | #include <config.h> |
| 20 | #include <sys/file.h> | 23 | #include <sys/file.h> |