]> git.notmuchmail.org Git - notmuch/blobdiff - emacs/notmuch-jump.el
emacs: notmuch-jump.el should provide.
[notmuch] / emacs / notmuch-jump.el
index 05bbce5eaeadb8d8866749059c90b13b9d76e867..20e24b252630fe2992092cbeac8e8f606f27f1c9 100644 (file)
 (require 'notmuch-lib)
 (require 'notmuch-hello)
 
+(eval-and-compile
+  (unless (fboundp 'window-body-width)
+    ;; Compatibility for Emacs pre-24
+    (defalias 'window-body-width 'window-width)))
+
 ;;;###autoload
 (defun notmuch-jump-search ()
   "Jump to a saved search by shortcut key.
@@ -47,7 +52,7 @@ fast way to jump to a saved search from anywhere in Notmuch."
                 (case (plist-get saved-search :sort-order)
                   (newest-first nil)
                   (oldest-first t)
-                  (otherwise (default-value notmuch-search-oldest-first)))))
+                  (otherwise (default-value 'notmuch-search-oldest-first)))))
            (push (list key name
                        `(lambda () (notmuch-search ',query ',oldest-first)))
                  action-map)))))
@@ -166,8 +171,6 @@ buffer."
           (exit-minibuffer))))
     map))
 
-(unless (fboundp 'window-body-width)
-  ;; Compatibility for Emacs pre-24
-  (defun window-body-width (&optional window)
-    (let ((edges (window-inside-edges window)))
-      (- (caddr edges) (car edges)))))
+;;
+
+(provide 'notmuch-jump)