Function: semanticdb-fix-pathname
semanticdb-fix-pathname is a byte-compiled function defined in
db-file.el.gz.
Signature
(semanticdb-fix-pathname DIR)
Documentation
If DIR is broken, fix it.
Force DIR to end with a /.
Note: Same as file-name-as-directory.
NOTE: This should get deleted from semantic soon.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-file.el.gz
(defun semanticdb-fix-pathname (dir)
"If DIR is broken, fix it.
Force DIR to end with a /.
Note: Same as `file-name-as-directory'.
NOTE: This should get deleted from semantic soon."
(file-name-as-directory dir))