From 577a6906ce8d918d0ea72dd5fabdd1d6a29f675e Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 22 Apr 2010 14:24:37 -0700 Subject: [PATCH] emacs: Use consistent naming for the two new poll functions. Emacs scoping rules strongly encourage us to have fully-namespaced function names. A prefix like "notmuch-search" is a pretty ugly namespace name, but it's what we have for now. --- emacs/notmuch.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/emacs/notmuch.el b/emacs/notmuch.el index 365757ea..2bf5f040 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -224,7 +224,7 @@ For a mouse binding, return nil." (define-key map "s" 'notmuch-search) (define-key map "o" 'notmuch-search-toggle-order) (define-key map "=" 'notmuch-search-refresh-view) - (define-key map "G" 'notmuch-poll-and-search-refresh-view) + (define-key map "G" 'notmuch-search-poll-and-refresh-view) (define-key map "t" 'notmuch-search-filter-by-tag) (define-key map "f" 'notmuch-search-filter) (define-key map [mouse-1] 'notmuch-search-show-thread) @@ -745,7 +745,7 @@ same relative position within the new buffer." (goto-char (point-min)) )) -(defun notmuch-poll-and-search-refresh-view () +(defun notmuch-search-poll-and-refresh-view () "Run external script to import mail and refresh the current view. Checks if the variable 'notmuch-external-refresh-script is defined @@ -814,7 +814,7 @@ current search results AND that are tagged with the given tag." (define-key map ">" 'notmuch-folder-last) (define-key map "<" 'notmuch-folder-first) (define-key map "=" 'notmuch-folder) - (define-key map "G" 'notmuch-poll-and-folder) + (define-key map "G" 'notmuch-folder-poll-and-refresh-view) (define-key map "s" 'notmuch-search) (define-key map [mouse-1] 'notmuch-folder-show-search) (define-key map (kbd "RET") 'notmuch-folder-show-search) @@ -928,7 +928,7 @@ Currently available key bindings: (if search (notmuch-search (cdr search) notmuch-search-oldest-first)))) -(defun notmuch-poll-and-folder () +(defun notmuch-folder-poll-and-refresh-view () "Run external script to import mail and refresh the folder view. Checks if the variable 'notmuch-external-refresh-script is defined -- 2.43.0