From: Leo Vivier Date: Mon, 20 May 2019 12:21:13 +0000 (+0200) Subject: emacs: make notmuch-search-interactive-region obsolete X-Git-Tag: archive/debian/0.29_rc0-1~41 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=46ab6013a29233b32dba49cf9c50e70fd02db1c3;ds=sidebyside emacs: make notmuch-search-interactive-region obsolete `notmuch-search-interactive-region' was moved to notmuch-lib.el in f3cba19f882471a396a6b6175a709ccd1f6f34a0 and renamed to `notmuch-interactive-region' without making the old function obsolete, thereby breaking user-commands which made use of it. This commit marks the function as obsolete and makes it an alias for the new function. --- diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el index 7fc342a5..8acad267 100644 --- a/emacs/notmuch-lib.el +++ b/emacs/notmuch-lib.el @@ -1017,6 +1017,11 @@ region if the region is active, or both `point' otherwise." (list (region-beginning) (region-end)) (list (point) (point)))) +(define-obsolete-function-alias + 'notmuch-search-interactive-region + 'notmuch-interactive-region + "notmuch 0.29") + (provide 'notmuch-lib) ;; Local Variables: