[1044] in BarnOwl Developers
[D-O-H] r1028 - trunk/owl
daemon@ATHENA.MIT.EDU (nelhage@MIT.EDU)
Thu Oct 29 18:12:25 2009
Resent-From: nelhage@mit.edu
Resent-To: barnowl-dev-mtg@charon.mit.edu
X-Original-To: nelhage@nelhage.com
To: dirty-owl-hackers@MIT.EDU
From: nelhage@MIT.EDU
Reply-to: dirty-owl-hackers@MIT.EDU
Date: Tue, 29 Apr 2008 01:21:16 -0400 (EDT)
Author: nelhage
Date: 2008-04-29 01:21:16 -0400 (Tue, 29 Apr 2008)
New Revision: 1028
Modified:
trunk/owl/owl.c
trunk/owl/variable.c
Log:
Remove nearly all references to the "basic" style.
Modified: trunk/owl/owl.c
===================================================================
--- trunk/owl/owl.c 2008-04-29 05:21:15 UTC (rev 1027)
+++ trunk/owl/owl.c 2008-04-29 05:21:16 UTC (rev 1028)
@@ -392,12 +392,8 @@
owl_function_debugmsg("startup: setting startup and default style");
if (0 != strcmp(owl_global_get_default_style(&g), "__unspecified__")) {
/* the style was set by the user: leave it alone */
- } else if (owl_global_is_config_format(&g)) {
- owl_global_set_default_style(&g, "perl");
- } else if (owl_global_is_userclue(&g, OWL_USERCLUE_CLASSES)) {
- owl_global_set_default_style(&g, "default");
} else {
- owl_global_set_default_style(&g, "basic");
+ owl_global_set_default_style(&g, "default");
}
/* zlog in if we need to */
Modified: trunk/owl/variable.c
===================================================================
--- trunk/owl/variable.c 2008-04-29 05:21:15 UTC (rev 1027)
+++ trunk/owl/variable.c 2008-04-29 05:21:16 UTC (rev 1028)
@@ -272,7 +272,6 @@
"Styles may be created with the 'style' command.\n"
"Some built-in styles include:\n"
" default - the default owl formatting\n"
- " basic - simple formatting\n"
" oneline - one line per-message\n"
" perl - legacy perl interface\n"
"\nSEE ALSO: style, show styles, view -s <style>\n"