diff options
| author | Glenn Morris | 2009-09-30 07:57:57 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-09-30 07:57:57 +0000 |
| commit | a1f1d102dba8bc78bcef0014b616dff235587fe2 (patch) | |
| tree | e0ea77edcb355a31fa6d6a8b38f88e04df8f40a9 | |
| parent | d16d4acd043c76ba70dd042af9de2394fa14ac90 (diff) | |
| download | emacs-a1f1d102dba8bc78bcef0014b616dff235587fe2.tar.gz emacs-a1f1d102dba8bc78bcef0014b616dff235587fe2.zip | |
Fix comment typos.
(ede-proj-target-makefile-miscelaneous, ede-misc-source): Fix doc typos.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/cedet/ede/proj-misc.el | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1e60a7f2bf0..2811eb1120f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2009-09-30 Glenn Morris <rgm@gnu.org> | 1 | 2009-09-30 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * cedet/ede/proj-misc.el (ede-proj-target-makefile-miscelaneous) | ||
| 4 | (ede-misc-source): | ||
| 3 | * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read) | 5 | * cedet/semantic/mru-bookmark.el (semantic-mrub-completing-read) |
| 4 | (semantic-mrub-switch-tags): Fix doc typos. | 6 | (semantic-mrub-switch-tags): Fix doc typos. |
| 5 | 7 | ||
diff --git a/lisp/cedet/ede/proj-misc.el b/lisp/cedet/ede/proj-misc.el index 6f2624845c7..632bc7267b8 100644 --- a/lisp/cedet/ede/proj-misc.el +++ b/lisp/cedet/ede/proj-misc.el | |||
| @@ -31,6 +31,8 @@ | |||
| 31 | (require 'ede/proj-comp) | 31 | (require 'ede/proj-comp) |
| 32 | 32 | ||
| 33 | ;;; Code: | 33 | ;;; Code: |
| 34 | |||
| 35 | ;; FIXME this isn't how you spell "miscellaneous". :( | ||
| 34 | (defclass ede-proj-target-makefile-miscelaneous (ede-proj-target-makefile) | 36 | (defclass ede-proj-target-makefile-miscelaneous (ede-proj-target-makefile) |
| 35 | ((sourcetype :initform (ede-misc-source)) | 37 | ((sourcetype :initform (ede-misc-source)) |
| 36 | (availablecompilers :initform (ede-misc-compile)) | 38 | (availablecompilers :initform (ede-misc-compile)) |
| @@ -42,7 +44,7 @@ | |||
| 42 | "Miscellaneous sources which have a specialized makefile. | 44 | "Miscellaneous sources which have a specialized makefile. |
| 43 | The sub-makefile is used to build this target.") | 45 | The sub-makefile is used to build this target.") |
| 44 | ) | 46 | ) |
| 45 | "Miscelaneous target type. | 47 | "Miscellaneous target type. |
| 46 | A user-written makefile is used to build this target. | 48 | A user-written makefile is used to build this target. |
| 47 | All listed sources are included in the distribution.") | 49 | All listed sources are included in the distribution.") |
| 48 | 50 | ||
| @@ -50,7 +52,7 @@ All listed sources are included in the distribution.") | |||
| 50 | (ede-sourcecode "ede-misc-source" | 52 | (ede-sourcecode "ede-misc-source" |
| 51 | :name "Miscelaneous" | 53 | :name "Miscelaneous" |
| 52 | :sourcepattern ".*") | 54 | :sourcepattern ".*") |
| 53 | "Miscelaneous fiels definition.") | 55 | "Miscellaneous field definition.") |
| 54 | 56 | ||
| 55 | (defvar ede-misc-compile | 57 | (defvar ede-misc-compile |
| 56 | (ede-compiler "ede-misc-compile" | 58 | (ede-compiler "ede-misc-compile" |
| @@ -80,7 +82,7 @@ All listed sources are included in the distribution.") | |||
| 80 | (defmethod ede-proj-makefile-insert-rules ((this ede-proj-target-makefile-miscelaneous)) | 82 | (defmethod ede-proj-makefile-insert-rules ((this ede-proj-target-makefile-miscelaneous)) |
| 81 | "Create the make rule needed to create an archive for THIS." | 83 | "Create the make rule needed to create an archive for THIS." |
| 82 | ;; DO NOT call the next method. We will never have any compilers, | 84 | ;; DO NOT call the next method. We will never have any compilers, |
| 83 | ;; or any dependencies, or stuff like this. This rull will lets us | 85 | ;; or any dependencies, or stuff like this. This rule will let us |
| 84 | ;; deal with it in a nice way. | 86 | ;; deal with it in a nice way. |
| 85 | (insert (ede-name this) ": ") | 87 | (insert (ede-name this) ": ") |
| 86 | (with-slots (submakefile) this | 88 | (with-slots (submakefile) this |