summaryrefslogtreecommitdiff
path: root/llama.el
diff options
context:
space:
mode:
Diffstat (limited to 'llama.el')
-rw-r--r--llama.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/llama.el b/llama.el
index 6476dc5..6d366c7 100644
--- a/llama.el
+++ b/llama.el
@@ -306,8 +306,7 @@ This advice prevents the empty string from being offered as a completion
candidate when `obarray' or a completion table that internally uses
that is used as TABLE."
(let ((result (apply fn str table rest)))
- (if (and (obarrayp table)
- (eq (symbol-function (intern-soft "" table)) 'llama))
+ (if (and (eq obarray table) (equal str ""))
(delete "" result)
result)))