summaryrefslogtreecommitdiff
path: root/ext/calendar
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2001-06-06 13:06:12 +0000
committerRasmus Lerdorf <rasmus@php.net>2001-06-06 13:06:12 +0000
commit81e2cf03ac62c29c6bb365c31b9229aa3b4deff8 (patch)
treea0680a82219899445723cc36b058d9c4d263e17f /ext/calendar
parent3bfd50f4f1dedb756c4e45566e2f8e172ab435ec (diff)
downloadphp-git-81e2cf03ac62c29c6bb365c31b9229aa3b4deff8.tar.gz
Fix folding and clean up some extensions
Diffstat (limited to 'ext/calendar')
-rw-r--r--ext/calendar/cal_unix.c8
-rw-r--r--ext/calendar/calendar.c9
-rw-r--r--ext/calendar/dow.c9
-rw-r--r--ext/calendar/french.c10
-rw-r--r--ext/calendar/jewish.c9
-rw-r--r--ext/calendar/julian.c9
6 files changed, 53 insertions, 1 deletions
diff --git a/ext/calendar/cal_unix.c b/ext/calendar/cal_unix.c
index cfeaa978d2..80853eac3d 100644
--- a/ext/calendar/cal_unix.c
+++ b/ext/calendar/cal_unix.c
@@ -78,3 +78,11 @@ PHP_FUNCTION(jdtounix)
}
/* }}} */
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 tw=78 fdm=marker
+ * vim<600: sw=4 ts=4 tw=78
+ */
diff --git a/ext/calendar/calendar.c b/ext/calendar/calendar.c
index 4443c97bdd..2ac1dc1997 100644
--- a/ext/calendar/calendar.c
+++ b/ext/calendar/calendar.c
@@ -289,7 +289,6 @@ PHP_FUNCTION(jdtogregorian)
}
/* }}} */
-
/* {{{ proto string jdmonthname(int juliandaycount, int mode)
Returns name of month for julian day count */
PHP_FUNCTION(jdmonthname)
@@ -339,3 +338,11 @@ PHP_FUNCTION(jdtogregorian)
}
/* }}} */
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 tw=78 fdm=marker
+ * vim<600: sw=4 ts=4 tw=78
+ */
diff --git a/ext/calendar/dow.c b/ext/calendar/dow.c
index 4bd3575601..5336ea63e3 100644
--- a/ext/calendar/dow.c
+++ b/ext/calendar/dow.c
@@ -65,3 +65,12 @@ char *DayNameLong[7] =
"Friday",
"Saturday"
};
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 tw=78 fdm=marker
+ * vim<600: sw=4 ts=4 tw=78
+ */
diff --git a/ext/calendar/french.c b/ext/calendar/french.c
index 75efc30e35..ebb497d90e 100644
--- a/ext/calendar/french.c
+++ b/ext/calendar/french.c
@@ -148,3 +148,13 @@ char *FrenchMonthName[14] =
"Fructidor",
"Extra"
};
+
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 tw=78 fdm=marker
+ * vim<600: sw=4 ts=4 tw=78
+ */
diff --git a/ext/calendar/jewish.c b/ext/calendar/jewish.c
index 2cf4baf864..2b3f93e601 100644
--- a/ext/calendar/jewish.c
+++ b/ext/calendar/jewish.c
@@ -730,3 +730,12 @@ long int JewishToSdn(
}
return (sdn + SDN_OFFSET);
}
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 tw=78 fdm=marker
+ * vim<600: sw=4 ts=4 tw=78
+ */
diff --git a/ext/calendar/julian.c b/ext/calendar/julian.c
index 094b4ed647..cf78646165 100644
--- a/ext/calendar/julian.c
+++ b/ext/calendar/julian.c
@@ -238,3 +238,12 @@ long int JulianToSdn(
+ inputDay
- SDN_OFFSET);
}
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 tw=78 fdm=marker
+ * vim<600: sw=4 ts=4 tw=78
+ */