Changeset d70f45f for functions.c
- Timestamp:
- Jun 1, 2010, 3:19:58 PM (15 years ago)
- Branches:
- master, release-1.10, release-1.7, release-1.8, release-1.9
- Children:
- 69873f7
- Parents:
- e294783
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
rf6fae8d rd70f45f 1262 1262 touchwin(owl_global_get_curs_recwin(&g)); 1263 1263 touchwin(owl_global_get_curs_sepwin(&g)); 1264 touchwin(owl_global_get_curs_msgwin(&g));1265 1264 1266 1265 sepbar(""); 1267 owl_function_makemsg("");1268 1266 1269 1267 owl_global_set_needrefresh(&g); … … 3401 3399 { 3402 3400 va_list ap; 3403 char buff[2048];3401 char *str; 3404 3402 3405 3403 if (!owl_global_get_curs_msgwin(&g)) return; 3406 3404 3407 3405 va_start(ap, fmt); 3408 werase(owl_global_get_curs_msgwin(&g)); 3409 3410 vsnprintf(buff, 2048, fmt, ap); 3411 owl_function_debugmsg("makemsg: %s", buff); 3412 waddstr(owl_global_get_curs_msgwin(&g), buff); 3413 owl_global_set_needrefresh(&g); 3406 str = g_strdup_vprintf(fmt, ap); 3414 3407 va_end(ap); 3408 3409 owl_function_debugmsg("makemsg: %s", str); 3410 owl_msgwin_set_text(&g.msgwin, str); 3415 3411 } 3416 3412
Note: See TracChangeset
for help on using the changeset viewer.