unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH] emacs: drop support for deprecated notmuch-folders
@ 2012-12-03 21:23 Jani Nikula
  2012-12-03 22:13 ` Austin Clements
  2012-12-04 13:14 ` David Bremner
  0 siblings, 2 replies; 5+ messages in thread
From: Jani Nikula @ 2012-12-03 21:23 UTC (permalink / raw)
  To: notmuch

Remove notmuch-folders which has been deprecated since

commit a4669217600e4536dc0c49f0255af5e2d9bc183f
Author: Carl Worth <cworth@cworth.org>
Date:   Mon Apr 26 22:42:07 2010 -0700

    emacs: Rip out all of the notmuch-folder code.

This lets us simplify the notmuch-saved-searches code slightly.
---
 emacs/notmuch-hello.el |    7 +------
 emacs/notmuch-lib.el   |   19 ++-----------------
 2 files changed, 3 insertions(+), 23 deletions(-)

diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el
index be50aae..6db62a0 100644
--- a/emacs/notmuch-hello.el
+++ b/emacs/notmuch-hello.el
@@ -689,7 +689,7 @@ following:
   "Show an entry for each saved search and inboxed messages for each tag"
   (notmuch-hello-insert-searches "What's in your inbox"
 				 (append
-				  (notmuch-saved-searches)
+				  notmuch-saved-searches
 				  (notmuch-hello-generate-tag-alist))
 				 :filter "tag:inbox"))
 
@@ -726,11 +726,6 @@ following:
   "Run notmuch and display saved searches, known tags, etc."
   (interactive)
 
-  ;; Jump through a hoop to get this value from the deprecated variable
-  ;; name (`notmuch-folders') or from the default value.
-  (unless notmuch-saved-searches
-    (setq notmuch-saved-searches (notmuch-saved-searches)))
-
   (if no-display
       (set-buffer "*notmuch-hello*")
     (switch-to-buffer "*notmuch-hello*"))
diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el
index 1d0ec17..3e8647d 100644
--- a/emacs/notmuch-lib.el
+++ b/emacs/notmuch-lib.el
@@ -77,7 +77,8 @@
 (defvar notmuch-search-history nil
   "Variable to store notmuch searches history.")
 
-(defcustom notmuch-saved-searches nil
+(defcustom notmuch-saved-searches '(("inbox" . "tag:inbox")
+				    ("unread" . "tag:unread"))
   "A list of saved searches to display."
   :type '(alist :key-type string :value-type string)
   :group 'notmuch-hello)
@@ -96,22 +97,6 @@ For example, if you wanted to remove an \"inbox\" tag and add an
   :group 'notmuch-search
   :group 'notmuch-show)
 
-(defvar notmuch-folders nil
-  "Deprecated name for what is now known as `notmuch-saved-searches'.")
-
-(defun notmuch-saved-searches ()
-  "Common function for querying the notmuch-saved-searches variable.
-
-We do this as a function to support the old name of the
-variable (`notmuch-folders') as well as for the default value if
-the user hasn't set this variable with the old or new value."
-  (if notmuch-saved-searches
-      notmuch-saved-searches
-    (if notmuch-folders
-	notmuch-folders
-      '(("inbox" . "tag:inbox")
-	("unread" . "tag:unread")))))
-
 (defun notmuch-version ()
   "Return a string with the notmuch version number."
   (let ((long-string
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] emacs: drop support for deprecated notmuch-folders
  2012-12-03 21:23 [PATCH] emacs: drop support for deprecated notmuch-folders Jani Nikula
@ 2012-12-03 22:13 ` Austin Clements
  2012-12-04 13:14 ` David Bremner
  1 sibling, 0 replies; 5+ messages in thread
From: Austin Clements @ 2012-12-03 22:13 UTC (permalink / raw)
  To: Jani Nikula; +Cc: notmuch

LGTM.  It's probably more reliable, too, since there are places where
we reference notmuch-saved-searches (the variable) directly that may
not pass through notmuch-hello first.

Quoth Jani Nikula on Dec 03 at 11:23 pm:
> Remove notmuch-folders which has been deprecated since
> 
> commit a4669217600e4536dc0c49f0255af5e2d9bc183f
> Author: Carl Worth <cworth@cworth.org>
> Date:   Mon Apr 26 22:42:07 2010 -0700
> 
>     emacs: Rip out all of the notmuch-folder code.
> 
> This lets us simplify the notmuch-saved-searches code slightly.
> ---
>  emacs/notmuch-hello.el |    7 +------
>  emacs/notmuch-lib.el   |   19 ++-----------------
>  2 files changed, 3 insertions(+), 23 deletions(-)
> 
> diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el
> index be50aae..6db62a0 100644
> --- a/emacs/notmuch-hello.el
> +++ b/emacs/notmuch-hello.el
> @@ -689,7 +689,7 @@ following:
>    "Show an entry for each saved search and inboxed messages for each tag"
>    (notmuch-hello-insert-searches "What's in your inbox"
>  				 (append
> -				  (notmuch-saved-searches)
> +				  notmuch-saved-searches
>  				  (notmuch-hello-generate-tag-alist))
>  				 :filter "tag:inbox"))
>  
> @@ -726,11 +726,6 @@ following:
>    "Run notmuch and display saved searches, known tags, etc."
>    (interactive)
>  
> -  ;; Jump through a hoop to get this value from the deprecated variable
> -  ;; name (`notmuch-folders') or from the default value.
> -  (unless notmuch-saved-searches
> -    (setq notmuch-saved-searches (notmuch-saved-searches)))
> -
>    (if no-display
>        (set-buffer "*notmuch-hello*")
>      (switch-to-buffer "*notmuch-hello*"))
> diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el
> index 1d0ec17..3e8647d 100644
> --- a/emacs/notmuch-lib.el
> +++ b/emacs/notmuch-lib.el
> @@ -77,7 +77,8 @@
>  (defvar notmuch-search-history nil
>    "Variable to store notmuch searches history.")
>  
> -(defcustom notmuch-saved-searches nil
> +(defcustom notmuch-saved-searches '(("inbox" . "tag:inbox")
> +				    ("unread" . "tag:unread"))
>    "A list of saved searches to display."
>    :type '(alist :key-type string :value-type string)
>    :group 'notmuch-hello)
> @@ -96,22 +97,6 @@ For example, if you wanted to remove an \"inbox\" tag and add an
>    :group 'notmuch-search
>    :group 'notmuch-show)
>  
> -(defvar notmuch-folders nil
> -  "Deprecated name for what is now known as `notmuch-saved-searches'.")
> -
> -(defun notmuch-saved-searches ()
> -  "Common function for querying the notmuch-saved-searches variable.
> -
> -We do this as a function to support the old name of the
> -variable (`notmuch-folders') as well as for the default value if
> -the user hasn't set this variable with the old or new value."
> -  (if notmuch-saved-searches
> -      notmuch-saved-searches
> -    (if notmuch-folders
> -	notmuch-folders
> -      '(("inbox" . "tag:inbox")
> -	("unread" . "tag:unread")))))
> -
>  (defun notmuch-version ()
>    "Return a string with the notmuch version number."
>    (let ((long-string

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] emacs: drop support for deprecated notmuch-folders
  2012-12-03 21:23 [PATCH] emacs: drop support for deprecated notmuch-folders Jani Nikula
  2012-12-03 22:13 ` Austin Clements
@ 2012-12-04 13:14 ` David Bremner
  2012-12-04 16:20   ` [PATCH] NEWS: removal of notmuch-folders Jani Nikula
  1 sibling, 1 reply; 5+ messages in thread
From: David Bremner @ 2012-12-04 13:14 UTC (permalink / raw)
  To: Jani Nikula, notmuch

Jani Nikula <jani@nikula.org> writes:

> Remove notmuch-folders which has been deprecated since
>
> commit a4669217600e4536dc0c49f0255af5e2d9bc183f
> Author: Carl Worth <cworth@cworth.org>
> Date:   Mon Apr 26 22:42:07 2010 -0700

pushed, 

d

PS: NEWS-worthy?

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] NEWS: removal of notmuch-folders
  2012-12-04 13:14 ` David Bremner
@ 2012-12-04 16:20   ` Jani Nikula
  2012-12-06 21:24     ` David Bremner
  0 siblings, 1 reply; 5+ messages in thread
From: Jani Nikula @ 2012-12-04 16:20 UTC (permalink / raw)
  To: notmuch, david

---
 NEWS |   10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/NEWS b/NEWS
index dadf92a..34e7a28 100644
--- a/NEWS
+++ b/NEWS
@@ -18,6 +18,16 @@ Bcc and Reply-To headers are now available in notmuch show json output
   For example notmuch Emacs client can now have these headers visible
   when the headers are added to the `notmuch-message-headers` variable.
 
+Emacs Interface
+---------------
+
+Removal of the deprecated `notmuch-folders` variable
+
+  `notmuch-folders` has been deprecated since the introduction of saved
+  searches and the notmuch hello view in notmuch 0.3. `notmuch-folders`
+  has now been removed. Any remaining users should migrate to
+  `notmuch-saved-searches`.
+
 Library changes
 ---------------
 
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] NEWS: removal of notmuch-folders
  2012-12-04 16:20   ` [PATCH] NEWS: removal of notmuch-folders Jani Nikula
@ 2012-12-06 21:24     ` David Bremner
  0 siblings, 0 replies; 5+ messages in thread
From: David Bremner @ 2012-12-06 21:24 UTC (permalink / raw)
  To: Jani Nikula, notmuch

Jani Nikula <jani@nikula.org> writes:

> ---
>  NEWS |   10 ++++++++++
>  1 file changed, 10 insertions(+)

Pushed,

d

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-12-06 21:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-12-03 21:23 [PATCH] emacs: drop support for deprecated notmuch-folders Jani Nikula
2012-12-03 22:13 ` Austin Clements
2012-12-04 13:14 ` David Bremner
2012-12-04 16:20   ` [PATCH] NEWS: removal of notmuch-folders Jani Nikula
2012-12-06 21:24     ` David Bremner

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).