diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2011-09-29 17:59:34 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-09-30 03:12:10 +0800 |
commit | 5ddad039926944120fa8f138f3a0039292d736de (patch) | |
tree | 44a20cb844b5152c3fd2a221422f7dbcc6d65cfa /smime/lib | |
parent | 31a6477e702eb480c2cc18ebf1772f67b2b984d3 (diff) | |
download | gsoc2013-evolution-5ddad039926944120fa8f138f3a0039292d736de.tar.gz gsoc2013-evolution-5ddad039926944120fa8f138f3a0039292d736de.tar.zst gsoc2013-evolution-5ddad039926944120fa8f138f3a0039292d736de.zip |
Remove Ctrl + l () character from source files
From ccc980da1fd84ebfca25cf8caf9a5d62333099fc Mon Sep 17 00:00:00 2001
From: Paul Menzel <paulepanter@users.sourceforge.net>
Date: Wed, 28 Sep 2011 10:18:18 +0200
Subject: [PATCH] Remove Ctrl + l () character from source files
The following commits
git show aac3f2c8
git show 1510304c
git show 13cabd9e
git show 350a7a33
git show 9b7cc54d
git show e6972011
git show 1d3a7938
git show 934524b9
git show b2954936
git show a7f677b5
git show 4369c400
git show d509f47a
git show a6d5818f
git show c3876df7
git show 4583098b
git show 2831ada5
git show 4e1bce59
git show 1609f699
git show 4e4c1676
git show d6fade43
among others(?) introduced several occurrences of Ctrl + l (). Probably this was caused by the used editor.
These control characters can be searched for using the following command [1].
$ git grep ^L
[1] http://unstableme.blogspot.com/2009/10/grep-and-print-control-characters-in.html
Diffstat (limited to 'smime/lib')
-rw-r--r-- | smime/lib/e-asn1-object.c | 1 | ||||
-rw-r--r-- | smime/lib/e-cert-db.c | 2 | ||||
-rw-r--r-- | smime/lib/e-cert.c | 4 | ||||
-rw-r--r-- | smime/lib/e-pkcs12.c | 2 |
4 files changed, 0 insertions, 9 deletions
diff --git a/smime/lib/e-asn1-object.c b/smime/lib/e-asn1-object.c index 28c3aa7c85..4dd519e2d4 100644 --- a/smime/lib/e-asn1-object.c +++ b/smime/lib/e-asn1-object.c @@ -129,7 +129,6 @@ e_asn1_object_get_type (void) return asn1_object_type; } - /* This function is used to interpret an integer that * was encoded in a DER buffer. This function is used * when converting a DER buffer into a nsIASN1Object diff --git a/smime/lib/e-cert-db.c b/smime/lib/e-cert-db.c index 7fdd20f6e7..6006168e20 100644 --- a/smime/lib/e-cert-db.c +++ b/smime/lib/e-cert-db.c @@ -616,8 +616,6 @@ e_cert_db_get_type (void) return cert_type; } - - GStaticMutex init_mutex = G_STATIC_MUTEX_INIT; static ECertDB *cert_db = NULL; diff --git a/smime/lib/e-cert.c b/smime/lib/e-cert.c index e7aecc10c8..930dd65474 100644 --- a/smime/lib/e-cert.c +++ b/smime/lib/e-cert.c @@ -194,8 +194,6 @@ e_cert_get_type (void) return cert_type; } - - static void e_cert_populate (ECert *cert) { @@ -286,8 +284,6 @@ e_cert_new_from_der (gchar *data, return e_cert_new (cert); } - - CERTCertificate * e_cert_get_internal_cert (ECert *cert) { diff --git a/smime/lib/e-pkcs12.c b/smime/lib/e-pkcs12.c index 9b95668135..5f7a73ce65 100644 --- a/smime/lib/e-pkcs12.c +++ b/smime/lib/e-pkcs12.c @@ -143,8 +143,6 @@ e_pkcs12_get_type (void) return pkcs12_type; } - - EPKCS12 * e_pkcs12_new (void) { |