diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-11-20 12:59:39 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-11-20 12:59:39 +0100 |
commit | 16318bfb518aa7bc06e502e6fad7e53ec91067f9 (patch) | |
tree | e27122c0a061762bc483ed245ca62ac8d957f881 /lisp/cedet/ede/project-am.el | |
parent | 6082ab9697fa8c18e9049d24840d07efe6f95625 (diff) | |
download | emacs-16318bfb518aa7bc06e502e6fad7e53ec91067f9.tar.gz emacs-16318bfb518aa7bc06e502e6fad7e53ec91067f9.tar.bz2 emacs-16318bfb518aa7bc06e502e6fad7e53ec91067f9.zip |
; Fix typos
Diffstat (limited to 'lisp/cedet/ede/project-am.el')
-rw-r--r-- | lisp/cedet/ede/project-am.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cedet/ede/project-am.el b/lisp/cedet/ede/project-am.el index de6936ad1a8..75fde2043cb 100644 --- a/lisp/cedet/ede/project-am.el +++ b/lisp/cedet/ede/project-am.el @@ -195,7 +195,7 @@ other meta-variable based on this name.") "Add the current buffer into a project. _FILE is ignored. OT is the object target. DIR is the directory to start in." - (let* ((target (if ede-object (error "Already associated w/ a target") + (let* ((target (if ede-object (error "Already associated with a target") (let ((amf (project-am-load default-directory))) (if (not amf) (error "No project file")) (completing-read "Target: " @@ -231,7 +231,7 @@ OT is the object target. DIR is the directory to start in." (setq ede-object nil)) (cl-defmethod project-edit-file-target ((obj project-am-target)) - "Edit the target associated w/ this file." + "Edit the target associated with this file." (find-file (concat (oref obj path) "Makefile.am")) (goto-char (point-min)) (makefile-move-to-macro (project-am-macro obj)) |