diff options
author | Glenn Morris <rgm@gnu.org> | 2009-10-01 04:10:10 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-10-01 04:10:10 +0000 |
commit | a785b776a75832734952ddba204a7b89f3fa8462 (patch) | |
tree | 21826e2a2cc84ee5ad3ce3902b298365f6244ee3 /lisp/cedet/ede/project-am.el | |
parent | 0b253b125133b0ef647c7172721d7241a2f05abc (diff) | |
download | emacs-a785b776a75832734952ddba204a7b89f3fa8462.tar.gz |
Doc/message fixes.
Diffstat (limited to 'lisp/cedet/ede/project-am.el')
-rw-r--r-- | lisp/cedet/ede/project-am.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/cedet/ede/project-am.el b/lisp/cedet/ede/project-am.el index c7045dc69df..e2a9a3df5e2 100644 --- a/lisp/cedet/ede/project-am.el +++ b/lisp/cedet/ede/project-am.el @@ -1,7 +1,7 @@ ;;; project-am.el --- A project management scheme based on automake files. -;;; Copyright (C) 1998, 1999, 2000, 2003, 2005, 2007, 2008, 2009 -;;; Free Software Foundation, Inc. +;; Copyright (C) 1998, 1999, 2000, 2003, 2005, 2007, 2008, 2009 +;; Free Software Foundation, Inc. ;; Author: Eric M. Ludlam <zappo@gnu.org> ;; Version: 0.0.3 @@ -105,7 +105,7 @@ ) "Alist of type names and the type of object to create for them. Each entry is of th form: - (EMACSNAME CLASS AUToMAKEVAR INDIRECT) + (EMACSNAME CLASS AUTOMAKEVAR INDIRECT) where EMACSNAME is a name for Emacs to use. CLASS is the EDE target class to represent the target. AUTOMAKEVAR is the Automake variable to identify. This cannot be a @@ -188,7 +188,7 @@ question lists other variables that need to be looked up.") (defmethod project-add-file ((ot project-am-target)) "Add the current buffer into a project. OT is the object target. DIR is the directory to start in." - (let* ((target (if ede-object (error "Already assocated w/ a target") + (let* ((target (if ede-object (error "Already associated w/ a target") (let ((amf (project-am-load default-directory))) (if (not amf) (error "No project file")) (completing-read "Target: " @@ -984,7 +984,7 @@ Kill the Configure buffer if it was not already in a buffer." (defun project-am-package-info (dir) "Get the package information for directory topmost project dir over DIR. -Calcultes the info with `project-am-extract-package-info'." +Calculates the info with `project-am-extract-package-info'." (let ((top (ede-toplevel))) (when top (setq dir (oref top :directory))) (project-am-extract-package-info dir))) |