aboutsummaryrefslogtreecommitdiffstats
path: root/src/termcap.c
diff options
context:
space:
mode:
authorDavid J. MacKenzie1995-07-26 19:46:59 +0000
committerDavid J. MacKenzie1995-07-26 19:46:59 +0000
commitaa63d440503072c973ff7587a385bf7c363195ca (patch)
treee29ba7f5e1f9d94015c7fdfa1d4f7fabd3de2324 /src/termcap.c
parent9e3295f914912878352700ff1985c811dc8ec2ae (diff)
downloademacs-aa63d440503072c973ff7587a385bf7c363195ca.tar.gz
emacs-aa63d440503072c973ff7587a385bf7c363195ca.zip
TERMCAP_NAME -> TERMCAP_FILE.
Diffstat (limited to 'src/termcap.c')
-rw-r--r--src/termcap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/termcap.c b/src/termcap.c
index 7be847503f0..d26348e525c 100644
--- a/src/termcap.c
+++ b/src/termcap.c
@@ -76,8 +76,8 @@ int bufsize = 128;
76#endif 76#endif
77#endif 77#endif
78 78
79#ifndef TERMCAP_NAME 79#ifndef TERMCAP_FILE
80#define TERMCAP_NAME "/etc/termcap" 80#define TERMCAP_FILE "/etc/termcap"
81#endif 81#endif
82 82
83#ifndef emacs 83#ifndef emacs
@@ -480,7 +480,7 @@ tgetent (bp, name)
480 } 480 }
481 481
482 if (!termcap_name || !filep) 482 if (!termcap_name || !filep)
483 termcap_name = TERMCAP_NAME; 483 termcap_name = TERMCAP_FILE;
484 484
485 /* Here we know we must search a file and termcap_name has its name. */ 485 /* Here we know we must search a file and termcap_name has its name. */
486 486