diff options
Diffstat (limited to 'lisp/cedet/ede/linux.el')
-rw-r--r-- | lisp/cedet/ede/linux.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/cedet/ede/linux.el b/lisp/cedet/ede/linux.el index b5a6482bbdf..90e14ce87ce 100644 --- a/lisp/cedet/ede/linux.el +++ b/lisp/cedet/ede/linux.el @@ -118,7 +118,7 @@ If DIR has not been used as a build directory, fall back to (defun ede-linux--get-archs (dir) - "Returns a list of architecture names found in DIR." + "Return a list of architecture names found in DIR." (let ((archs-dir (expand-file-name "arch" dir)) archs) (when (file-directory-p archs-dir) @@ -169,7 +169,7 @@ found in DIR." (defun ede-linux--include-path (dir bdir arch) - "Returns a list with include directories. + "Return a list with include directories. Returned directories might not exist, since they are not created until Linux is built for the first time." (cl-map 'list @@ -186,7 +186,7 @@ until Linux is built for the first time." ;;;###autoload (defun ede-linux-load (dir &optional _rootproj) - "Return an Linux Project object if there is a match. + "Return a Linux Project object if there is a match. Return nil if there isn't one. Argument DIR is the directory it is created for. ROOTPROJ is nil, since there is only one project." |