1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Description: Autogenerated patch header for a single-debian-patch file.
The delta against upstream is either kept as a single patch, or maintained
in some VCS, and exported as a single patch instead of more manageable
atomic patches.
Forwarded: not-needed
---
--- bbdb3-3.2.2d.orig/lisp/bbdb-mu4e.el
+++ bbdb3-3.2.2d/lisp/bbdb-mu4e.el
@@ -24,7 +24,8 @@
;;; Code:
(require 'bbdb)
-(if t (require 'mu4e-view))
+(when t ;Don't require during compilation, since mu4e might not be installed!
+ (require 'mu4e-view))
(defvar mu4e-view-mode-map)
--- bbdb3-3.2.2d.orig/lisp/bbdb-notmuch.el
+++ bbdb3-3.2.2d/lisp/bbdb-notmuch.el
@@ -24,8 +24,9 @@
;;; Code:
(require 'bbdb)
-(require 'notmuch-show)
-(require 'notmuch-tree)
+(when t ;Don't require during compilation, since elpa-notmuch might not be installed!
+ (require 'notmuch-show)
+ (require 'notmuch-tree))
(defvar notmuch-show-mode-map)
(defvar notmuch-tree-mode-map)
|