]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Add editor footer to core files missing it
authorTravis Cross <tc@traviscross.com>
Fri, 27 Jun 2014 23:55:27 +0000 (23:55 +0000)
committerTravis Cross <tc@traviscross.com>
Fri, 27 Jun 2014 23:55:27 +0000 (23:55 +0000)
src/g711.c
src/inet_pton.c
src/switch_core_cert.c
src/switch_curl.c
src/switch_json.c
src/switch_mprintf.c
src/switch_profile.c
src/switch_sdp.c
src/switch_version.c

index 925e424af9463c2baca3a209c12324574a2d63f7..d6747328022d089ab730ae084cf3ccd4bbbc5702 100644 (file)
@@ -90,3 +90,14 @@ uint8_t ulaw_to_alaw(uint8_t ulaw)
 
 /*- End of function --------------------------------------------------------*/
 /*- End of file ------------------------------------------------------------*/
+
+/* For Emacs:
+ * Local Variables:
+ * mode:c
+ * indent-tabs-mode:t
+ * tab-width:4
+ * c-basic-offset:4
+ * End:
+ * For VIM:
+ * vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
+ */
index 6ad9920a7777907109dd05bb449de6c037771045..c889679be24810dda153588ce41b922194649aa0 100644 (file)
@@ -236,3 +236,14 @@ static int inet_pton6(const char *src, unsigned char *dst)
 #endif /* ENABLE_IPV6 */
 
 #endif /* HAVE_INET_PTON */
+
+/* For Emacs:
+ * Local Variables:
+ * mode:c
+ * indent-tabs-mode:t
+ * tab-width:4
+ * c-basic-offset:4
+ * End:
+ * For VIM:
+ * vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
+ */
index 6837ff11724cc96ee00ce25b28dbda8424a2b62f..34d4c666cd1875775d7ecd9286c69c4d51f2345c 100644 (file)
@@ -400,3 +400,13 @@ static int mkcert(X509 **x509p, EVP_PKEY **pkeyp, int bits, int serial, int days
        return(0);
 }
 
+/* For Emacs:
+ * Local Variables:
+ * mode:c
+ * indent-tabs-mode:t
+ * tab-width:4
+ * c-basic-offset:4
+ * End:
+ * For VIM:
+ * vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
+ */
index 5bd2e52db3cf09c6218856884d15664ba216dab7..82f87d1c481086c9d2870f8c5322ea5f859c4286 100644 (file)
@@ -111,3 +111,14 @@ SWITCH_DECLARE(switch_status_t) switch_curl_process_form_post_params(switch_even
        return SWITCH_STATUS_SUCCESS;
 
 }
+
+/* For Emacs:
+ * Local Variables:
+ * mode:c
+ * indent-tabs-mode:t
+ * tab-width:4
+ * c-basic-offset:4
+ * End:
+ * For VIM:
+ * vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
+ */
index 7235e88f6f0d89772da32509ce21e0ddccb1661b..487843df648778ed64bf0c44f42498e7fee7d7e9 100644 (file)
@@ -593,3 +593,13 @@ SWITCH_DECLARE(cJSON *) cJSON_CreateStringPrintf(const char *fmt, ...)
        return item;
 }
 
+/* For Emacs:
+ * Local Variables:
+ * mode:c
+ * indent-tabs-mode:t
+ * tab-width:4
+ * c-basic-offset:4
+ * End:
+ * For VIM:
+ * vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
+ */
index 23cb3604c93b4cf0fd660f3e173633873528bd71..a0b72420b80f4ec203d97d6c7c82cb646f818334 100644 (file)
@@ -922,3 +922,13 @@ SWITCH_DECLARE(char *) switch_snprintfv(char *zBuf, int n, const char *zFormat,
        return z;
 }
 
+/* For Emacs:
+ * Local Variables:
+ * mode:c
+ * indent-tabs-mode:t
+ * tab-width:4
+ * c-basic-offset:4
+ * End:
+ * For VIM:
+ * vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
+ */
index b7dca2f68cb7ffbed0d99c593e73a5f7b6fb174f..6bece5863053d0203e84bf23b1e24603e3391c1e 100644 (file)
@@ -333,4 +333,13 @@ SWITCH_DECLARE(void) switch_delete_profile_timer(switch_profile_timer_t **p)
        *p = NULL;
 }
 
-
+/* For Emacs:
+ * Local Variables:
+ * mode:c
+ * indent-tabs-mode:t
+ * tab-width:4
+ * c-basic-offset:4
+ * End:
+ * For VIM:
+ * vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
+ */
index 475254c0eb1678f2c8cf42f4b1fb4d295fdf3a2b..b1255195bd59f85d1d3fdb30a7716bf564052f6b 100644 (file)
@@ -21,3 +21,14 @@ sdp_connection_t *sdp_media_connections(sdp_media_t const *m)
 #define longlong __int64
 #include <strtoull.c>
 #endif
+
+/* For Emacs:
+ * Local Variables:
+ * mode:c
+ * indent-tabs-mode:t
+ * tab-width:4
+ * c-basic-offset:4
+ * End:
+ * For VIM:
+ * vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
+ */
index 5cf724f1b616c76efa8af7edcf6be0e057f8c214..fa96b823d8db5edbe6fb8ef29d9dd9ec0cd8b9ec 100644 (file)
@@ -53,3 +53,13 @@ SWITCH_DECLARE(const char *)switch_version_revision_human(void) {return switch_v
 SWITCH_DECLARE(const char *)switch_version_full(void) {return switch_version_full_str;}
 SWITCH_DECLARE(const char *)switch_version_full_human(void) {return switch_version_full_human_str;}
 
+/* For Emacs:
+ * Local Variables:
+ * mode:c
+ * indent-tabs-mode:t
+ * tab-width:4
+ * c-basic-offset:4
+ * End:
+ * For VIM:
+ * vim:set softtabstop=4 shiftwidth=4 tabstop=4 noet:
+ */