openbsd-ports/editors/jed/patches/patch-lib_jed_rc
espie ea4507e6c2 FAKE=lib for libslang. Okay, so we no longer need to install libslang
at all while building.

Add a missing MODULE on gettext in slrn, someone else will fix the
configure test presumably...
2005-04-19 09:41:41 +00:00

35 lines
1002 B
Plaintext

$OpenBSD: patch-lib_jed_rc,v 1.3 2005/04/19 09:41:42 espie Exp $
--- lib/jed.rc.orig Sun Oct 20 08:55:30 2002
+++ lib/jed.rc Tue Apr 19 11:04:41 2005
@@ -152,7 +152,7 @@ CASE_SEARCH = 0; % zero turns off cas
%---------------------------------------------------------------------------
% C-mode indentation style
%---------------------------------------------------------------------------
-c_set_style ("jed"); % or "linux", "gnu", "bsd", "k&r"
+c_set_style ("knf"); % or "jed" or "linux", "gnu", "bsd", "k&r"
#ifdef IBMPC_SYSTEM
% If non-zero, treat file names as case sensitive
@@ -240,4 +240,21 @@ define dired_hook ()
{
%local_unsetkey ("^K");
%local_setkey ("dired_kill_line", "^K");
+}
+
+define c_set_style_hook (style)
+{
+ if (strlow(style) == "knf")
+ {
+ TAB_DEFAULT = 8;
+ USE_TABS = 1;
+ ADD_NEWLINE = 1;
+ C_INDENT = 8;
+ C_BRACE = 0;
+ C_BRA_NEWLINE = 0;
+ C_CONTINUED_OFFSET = 0;
+ C_Colon_Offset = 0;
+ C_Class_Offset = 0;
+ C_Comment_Column = 0;
+ }
}