]> code.delx.au - gnu-emacs-elpa/commitdiff
Added missing 'show call.
authorNikolaj Schumacher <git@nschum.de>
Sun, 22 Mar 2009 09:34:38 +0000 (10:34 +0100)
committerNikolaj Schumacher <git@nschum.de>
Sun, 22 Mar 2009 09:42:30 +0000 (10:42 +0100)
company.el

index 443fbc2b6c633f9f075aea4fb12e4fa701ae1ea7..4dd4c2868943c89b09823e6934e83f04fa28d3fa 100644 (file)
@@ -479,6 +479,8 @@ keymap during active completions (`company-active-map'):
          (unless (funcall company-backend 'sorted)
            (setq candidates (sort candidates 'string<)))
          candidates)))
+  (unless company-candidates-cache
+    (company-call-frontends 'show))
   (unless (assoc prefix company-candidates-cache)
     (push (cons prefix company-candidates) company-candidates-cache))
   company-candidates)