]> git.notmuchmail.org Git - notmuch/blobdiff - emacs/notmuch-hello.el
Fix problem with notmuch-hello-nice-number
[notmuch] / emacs / notmuch-hello.el
index c384313f69fc1c052de87ad29c272251c351c89a..4b6a90dbc0ecc3e5a334c3a68d301e451c57fa46 100644 (file)
@@ -115,6 +115,7 @@ Typically \",\" in the US and UK and \".\" in Europe."
     (while (> n 0)
       (push (% n 1000) result)
       (setq n (/ n 1000)))
+    (setq result (or result '(0)))
     (apply #'concat
      (number-to-string (car result))
      (mapcar (lambda (elem)