Changeset 176d3443
- Timestamp:
- Jan 30, 2005, 12:26:43 PM (20 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- e74e573
- Parents:
- 180cd15
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r15b34fd r176d3443 20 20 filter logging. Now have more consistent interfaces to 21 21 creating messages etc. Still needs more work though. 22 Deal gracefully with being resized as small as 1x1 [BZ 3] 22 23 23 24 2.1.10 -
global.c
r8232149 r176d3443 120 120 /* set the new window sizes */ 121 121 g->recwinlines=g->lines-(typwin_lines+2); 122 if (g->recwinlines<1) { 123 /* this will screw things up. I'm not sure what to do yet, 124 but this is better than nothing */ 125 /* g->recwinlines=1; */ 126 } 122 if (g->recwinlines<0) { 123 /* gotta deal with this */ 124 g->recwinlines=0; 125 } 126 127 owl_function_debugmsg("_owl_global_setup_windows: about to call newwin(%i, %i, 0, 0)\n", g->recwinlines, cols); 127 128 128 129 /* create the new windows */ 129 130 g->recwin=newwin(g->recwinlines, cols, 0, 0); 130 131 if (g->recwin==NULL) { 131 owl_function_debugmsg("\n\nI just received an error on creating a new receive window\n"); 132 owl_function_debugmsg("newwin was called with arguments (%i, %i, 0, 0) and returned NULL\n", 133 g->recwinlines, cols); 132 owl_function_debugmsg("_owl_global_setup_windows: newwin returned NULL\n", g->recwinlines, cols); 134 133 endwin(); 135 136 134 exit(50); 137 135 } -
keybinding.c
rcf83b7a r176d3443 19 19 int nktokens, i; 20 20 21 owl_function_debugmsg(" creating binding for <%s> with desc: <%s>\n", keyseq, desc);21 owl_function_debugmsg("owl_keybinding_init: creating binding for <%s> with desc: <%s>", keyseq, desc); 22 22 if (command && !function_fn) { 23 23 kb->type = OWL_KEYBINDING_COMMAND; -
owl.c
r15b34fd r176d3443 138 138 } 139 139 140 owl_function_debugmsg("startup: Finished parsing arguments"); 141 140 142 #ifdef HAVE_LIBZEPHYR 141 143 /* zephyr init */ … … 228 230 owl_function_debugmsg("startup: creating built-in styles"); 229 231 s=owl_malloc(sizeof(owl_style)); 230 owl_style_create_internal(s, "default", &owl_stylefunc_default, 231 "Default message formatting"); 232 owl_style_create_internal(s, "default", &owl_stylefunc_default, "Default message formatting"); 232 233 owl_global_add_style(&g, s); 233 234 234 235 s=owl_malloc(sizeof(owl_style)); 235 owl_style_create_internal(s, "basic", &owl_stylefunc_basic, 236 "Basic message formatting."); 236 owl_style_create_internal(s, "basic", &owl_stylefunc_basic, "Basic message formatting."); 237 237 owl_global_add_style(&g, s); 238 238 #if 0 239 239 s=owl_malloc(sizeof(owl_style)); 240 owl_style_create_internal(s, "vt", &owl_stylefunc_vt, 241 "VT message formatting."); 240 owl_style_create_internal(s, "vt", &owl_stylefunc_vt, "VT message formatting."); 242 241 owl_global_add_style(&g, s); 243 242 #endif 244 243 s=owl_malloc(sizeof(owl_style)); 245 owl_style_create_internal(s, "oneline", &owl_stylefunc_oneline, 246 "Formats for one-line-per-message"); 244 owl_style_create_internal(s, "oneline", &owl_stylefunc_oneline, "Formats for one-line-per-message"); 247 245 owl_global_add_style(&g, s); 248 246
Note: See TracChangeset
for help on using the changeset viewer.