]> git.notmuchmail.org Git - notmuch/blobdiff - notmuch-time.c
emacs: Add new option notmuch-search-hide-excluded
[notmuch] / notmuch-time.c
index e250c3d5ea5d5af574e2a8a837896e02e1499739..cd45818b076a8141731d8cef4eb7e1bc9b44a675 100644 (file)
@@ -13,7 +13,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see http://www.gnu.org/licenses/ .
+ * along with this program.  If not, see https://www.gnu.org/licenses/ .
  *
  * Author: Carl Worth <cworth@cworth.org>
  */
@@ -46,7 +46,7 @@ const char *
 notmuch_time_relative_date (const void *ctx, time_t then)
 {
     struct tm tm_now, tm_then;
-    time_t now = time(NULL);
+    time_t now = time (NULL);
     time_t delta;
     char *result;
 
@@ -76,26 +76,25 @@ notmuch_time_relative_date (const void *ctx, time_t then)
 
     if (delta <= 7 * DAY) {
        if (tm_then.tm_wday == tm_now.tm_wday &&
-           delta < DAY)
-       {
+           delta < DAY) {
            strftime (result, RELATIVE_DATE_MAX,
-                     "Today %R", &tm_then); /* Today 12:30 */
+                     "Today %R", &tm_then);    /* Today 12:30 */
            return result;
        } else if ((tm_now.tm_wday + 7 - tm_then.tm_wday) % 7 == 1) {
            strftime (result, RELATIVE_DATE_MAX,
-                     "Yest. %R", &tm_then); /* Yest. 12:30 */
+                     "Yest. %R", &tm_then);    /* Yest. 12:30 */
            return result;
        } else {
            if (tm_then.tm_wday != tm_now.tm_wday) {
                strftime (result, RELATIVE_DATE_MAX,
-                         "%a. %R", &tm_then); /* Mon. 12:30 */
+                         "%a. %R", &tm_then);  /* Mon. 12:30 */
                return result;
            }
        }
     }
 
     strftime (result, RELATIVE_DATE_MAX,
-             "%B %d", &tm_then); /* October 12 */
+             "%B %d", &tm_then);               /* October 12 */
     return result;
 }
 #undef MINUTE