aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2016-02-13 16:05:32 +1100
committerLars Ingebrigtsen2016-02-13 16:05:32 +1100
commitb806a0556b3c3cef8254492de2ccb7d2d9d1618d (patch)
treeecaa79031eade1aba655c3f933201392bf4e5667
parentf6d71b509722f07db92d0b2cdfce2d6b71b098cf (diff)
downloademacs-b806a0556b3c3cef8254492de2ccb7d2d9d1618d.tar.gz
emacs-b806a0556b3c3cef8254492de2ccb7d2d9d1618d.zip
Fix the :tracker slot name
* lisp/gnus/registry.el (registry-lookup-secondary): The `tracker' slot is called `tracker', not `:tracker'.
-rw-r--r--lisp/gnus/registry.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/registry.el b/lisp/gnus/registry.el
index 6684c258827..e8bc6f5545a 100644
--- a/lisp/gnus/registry.el
+++ b/lisp/gnus/registry.el
@@ -179,7 +179,7 @@ Returns an alist of the key followed by the entry in a list, not a cons cell."
179 &optional create) 179 &optional create)
180 "Search for TRACKSYM in the registry-db THIS. 180 "Search for TRACKSYM in the registry-db THIS.
181When CREATE is not nil, create the secondary index hashtable if needed." 181When CREATE is not nil, create the secondary index hashtable if needed."
182 (let ((h (gethash tracksym (oref db :tracker)))) 182 (let ((h (gethash tracksym (oref db tracker))))
183 (if h 183 (if h
184 h 184 h
185 (when create 185 (when create