summaryrefslogtreecommitdiff
path: root/lisp/cedet
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2022-08-06 10:32:24 +0200
committerStefan Kangas <stefan@marxist.se>2022-08-06 13:01:13 +0200
commite8613adb0dc290bde41fd15dabbef255f5e00d8f (patch)
tree5c79d75aed20c98de56c12aca435ff6f6def70ec /lisp/cedet
parent2ac3e3eda5ff92b2a2c3a87755fceabf6aa1abed (diff)
downloademacs-e8613adb0dc290bde41fd15dabbef255f5e00d8f.tar.gz
emacs-e8613adb0dc290bde41fd15dabbef255f5e00d8f.tar.bz2
emacs-e8613adb0dc290bde41fd15dabbef255f5e00d8f.zip
Make compat alias ede-toplevel-project-or-nil obsolete
* lisp/cedet/ede/files.el (ede-toplevel-project-or-nil): Make compat alias obsolete.
Diffstat (limited to 'lisp/cedet')
-rw-r--r--lisp/cedet/ede/files.el5
-rw-r--r--lisp/cedet/ede/system.el2
2 files changed, 3 insertions, 4 deletions
diff --git a/lisp/cedet/ede/files.el b/lisp/cedet/ede/files.el
index b8acb192c17..e44ddea32f6 100644
--- a/lisp/cedet/ede/files.el
+++ b/lisp/cedet/ede/files.el
@@ -340,7 +340,7 @@ Optional FORCE means to ignore the hash of known directories."
;;
;; These utilities will identify the "toplevel" of a project.
;;
-;; NOTE: These two -toplevel- functions return a directory even though
+;; NOTE: This -toplevel- function returns a directory even though
;; the function name implies a project.
(defun ede-toplevel-project (dir)
@@ -365,8 +365,6 @@ If DIR is not part of a project, return nil."
(t nil))))
-(defalias 'ede-toplevel-project-or-nil #'ede-toplevel-project)
-
;;; DIRECTORY CONVERSION STUFF
;;
(cl-defmethod ede-convert-path ((this ede-project) path)
@@ -535,6 +533,7 @@ Argument DIR is the directory to trim upwards."
nil
fnd)))
+(define-obsolete-function-alias 'ede-toplevel-project-or-nil #'ede-toplevel-project "29.1")
(provide 'ede/files)
diff --git a/lisp/cedet/ede/system.el b/lisp/cedet/ede/system.el
index 2da16b37d72..b4fc95c6073 100644
--- a/lisp/cedet/ede/system.el
+++ b/lisp/cedet/ede/system.el
@@ -133,7 +133,7 @@ Download tramp, and use /r:machine: for names on remote sites w/out FTP access."
(defun ede-vc-project-directory ()
"Run `vc-dir' on the current project."
(interactive)
- (let ((top (ede-toplevel-project-or-nil default-directory)))
+ (let ((top (ede-toplevel-project default-directory)))
(vc-dir top nil)))
(provide 'ede/system)