diff options
author | Sean Allred <code@seanallred.com> | 2015-01-02 12:14:23 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2015-01-02 12:14:23 -0500 |
commit | dbbcabcffcd7ef171b7f8f28ce35e28b70aa00a8 (patch) | |
tree | 7c66182afa68c8dc1528c50ae0c0f846d278ef12 /sx-tab.el | |
parent | 00ccd139248e782cd8316eff65c26aed838c7e46 (diff) | |
parent | 9a420bffcc426b4826f14ad1f62b5430750821df (diff) |
Merge branch 'master' into fix-mark-read-logic
Diffstat (limited to 'sx-tab.el')
-rw-r--r-- | sx-tab.el | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -34,10 +34,10 @@ (defun sx-tab-switch (tab) "Switch to another question-list tab." (interactive - (list (funcall (if ido-mode #'ido-completing-read #'completing-read) - "Switch to tab: " sx-tab--list - (lambda (tab) (not (equal tab sx-question-list--current-tab))) - t))) + (list (sx-completing-read + "Switch to tab: " sx-tab--list + (lambda (tab) (not (equal tab sx-question-list--current-tab))) + t))) (funcall (intern (format "sx-tab-%s" (downcase tab))))) |