]> code.delx.au - gnu-emacs-elpa/commitdiff
Rename company-cmake-doc-buffer to make it private
authorDmitry Gutov <dgutov@yandex.ru>
Fri, 9 Aug 2013 20:56:47 +0000 (23:56 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Fri, 9 Aug 2013 20:56:47 +0000 (23:56 +0300)
company-cmake.el

index cf3ff23da57721cc3c1b320080abea4a294ca615..0c96eb676a70e508d85b1472a1f8dd2b91d7df08 100644 (file)
@@ -96,7 +96,7 @@ They affect which types of symbols we get completion candidates for.")
       (setq result (replace-regexp-in-string "^[ \t\n\r]+" "" result))
       result)))
 
-(defun company-cmake-doc-buffer (prefix)
+(defun company-cmake--doc-buffer (prefix)
   (let ((cmd-opts (gethash prefix company-cmake--meta-command-cache)))
     (with-temp-buffer
       (call-process company-cmake-executable nil t nil cmd-opts prefix)
@@ -122,7 +122,7 @@ CMake is a cross-platform, open-source make system."
                  (company-grab-symbol)))
     (candidates (company-cmake--candidates arg))
     (meta (company-cmake--meta arg))
-    (doc-buffer (company-cmake-doc-buffer arg))
+    (doc-buffer (company-cmake--doc-buffer arg))
     ))
 
 (provide 'company-cmake)