diff options
| author | Paul Eggert | 2011-03-08 21:46:35 -0800 |
|---|---|---|
| committer | Paul Eggert | 2011-03-08 21:46:35 -0800 |
| commit | b024a9466a0e238e053d0464f4a4f9b19d04648b (patch) | |
| tree | 3483eb4a4d2b0180f5f0ec8d7c17b2ec81b039ca /src/tparam.h | |
| parent | e6ca6543685fded0d1b3322dd06d0fa70d3e2a44 (diff) | |
| download | emacs-b024a9466a0e238e053d0464f4a4f9b19d04648b.tar.gz emacs-b024a9466a0e238e053d0464f4a4f9b19d04648b.zip | |
* term.c, tparam.h (tgetflag, tgetnum, tgetstr): Move the const to the .h file
Diffstat (limited to 'src/tparam.h')
| -rw-r--r-- | src/tparam.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tparam.h b/src/tparam.h index 11c9ae68aad..3cd3e6053cc 100644 --- a/src/tparam.h +++ b/src/tparam.h | |||
| @@ -23,9 +23,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 23 | 23 | ||
| 24 | void tputs (const char *, int, int (*) (int)); | 24 | void tputs (const char *, int, int (*) (int)); |
| 25 | int tgetent (char *, const char *); | 25 | int tgetent (char *, const char *); |
| 26 | int tgetflag (char *id); | 26 | int tgetflag (const char *); |
| 27 | int tgetnum (char *id); | 27 | int tgetnum (const char *); |
| 28 | char *tgetstr (char *, char **); | 28 | char *tgetstr (const char *, char **); |
| 29 | char *tgoto (const char *, int, int); | 29 | char *tgoto (const char *, int, int); |
| 30 | 30 | ||
| 31 | char *tparam (const char *, char *, int, int, int, int, int); | 31 | char *tparam (const char *, char *, int, int, int, int, int); |