summaryrefslogtreecommitdiff
path: root/main/editline
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2007-02-18 15:03:42 +0000
committerKevin P. Fleming <kpfleming@digium.com>2007-02-18 15:03:42 +0000
commit74f31a51bc4fdf14b6f3a5d2f886c65ff882bd55 (patch)
treed3cbfebd5968b6a1cb896ae84b747c066ae3e94c /main/editline
parent7f0934b6f4f2d80f5d7befacb0b7ea51c346d634 (diff)
add -Wundef to the --enable-dev-mode flags, so that mistyped macro names in #if expressions will be caught
convert various #if expressions to #ifdef for macros that may not be defined (and where the value is not important) Note: two of these changes are in bison generated files which is going to be inconvenient when they are regenerated git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@55329 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/editline')
-rw-r--r--main/editline/refresh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/editline/refresh.c b/main/editline/refresh.c
index 935117741..fcebe1253 100644
--- a/main/editline/refresh.c
+++ b/main/editline/refresh.c
@@ -215,7 +215,7 @@ re_refresh(EditLine *el)
prompt_print(el, EL_PROMPT);
/* draw the current input buffer */
-#if notyet
+#ifdef notyet
termsz = el->el_term.t_size.h * el->el_term.t_size.v;
if (el->el_line.lastchar - el->el_line.buffer > termsz) {
/*