aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero2011-04-13 13:50:12 +0200
committerJuanma Barranquero2011-04-13 13:50:12 +0200
commit7ee6a1d37268f1f4b7047fc6ccad271d2ee5fd31 (patch)
treee131fa1805a8201a25261336aa8846a57c321cfe /lisp
parent300f9fca551d3aa024ff24b85e6ab7f0ae49ae03 (diff)
downloademacs-7ee6a1d37268f1f4b7047fc6ccad271d2ee5fd31.tar.gz
emacs-7ee6a1d37268f1f4b7047fc6ccad271d2ee5fd31.zip
Fix typos.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog.142
-rw-r--r--lisp/cedet/ChangeLog8
-rw-r--r--lisp/cedet/ede/pconf.el4
-rw-r--r--lisp/cedet/ede/proj-comp.el4
-rw-r--r--lisp/cedet/ede/proj-elisp.el8
-rw-r--r--lisp/cedet/ede/proj-scheme.el2
6 files changed, 18 insertions, 10 deletions
diff --git a/lisp/ChangeLog.14 b/lisp/ChangeLog.14
index cf08fd0ae44..54d41f4d0ed 100644
--- a/lisp/ChangeLog.14
+++ b/lisp/ChangeLog.14
@@ -4283,7 +4283,7 @@
4283 (proced-descend): New variable. 4283 (proced-descend): New variable.
4284 (proced-sort): New arg descend. 4284 (proced-sort): New arg descend.
4285 (proced-sort-interactive): Repeated calls toggle sort order. 4285 (proced-sort-interactive): Repeated calls toggle sort order.
4286 (proced-format): Accomodate changes of proced-format-alist. 4286 (proced-format): Accommodate changes of proced-format-alist.
4287 Undefined attributes are displayed as "?". 4287 Undefined attributes are displayed as "?".
4288 (proced-process-attributes): New optional arg pid-list. 4288 (proced-process-attributes): New optional arg pid-list.
4289 Ignore processes with empty attribute list. 4289 Ignore processes with empty attribute list.
diff --git a/lisp/cedet/ChangeLog b/lisp/cedet/ChangeLog
index 2d0cbb8159b..d8a4209cc98 100644
--- a/lisp/cedet/ChangeLog
+++ b/lisp/cedet/ChangeLog
@@ -1,3 +1,11 @@
12011-04-13 Juanma Barranquero <lekktu@gmail.com>
2
3 * ede/pconf.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
4 * ede/proj-comp.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
5 * ede/proj-elisp.el (ede-proj-tweak-autoconf, ede-proj-flush-autoconf)
6 (ede-proj-tweak-autoconf, ede-proj-flush-autoconf):
7 * ede/proj-scheme.el (ede-proj-tweak-autoconf): Fix typos in docstrings.
8
12011-03-07 Chong Yidong <cyd@stupidchicken.com> 92011-03-07 Chong Yidong <cyd@stupidchicken.com>
2 10
3 * Version 23.3 released. 11 * Version 23.3 released.
diff --git a/lisp/cedet/ede/pconf.el b/lisp/cedet/ede/pconf.el
index a2258c1d16f..77299c7eb39 100644
--- a/lisp/cedet/ede/pconf.el
+++ b/lisp/cedet/ede/pconf.el
@@ -160,7 +160,7 @@ don't do it. A value of nil means to just do it.")
160 (ede-proj-configure-synchronize this)) 160 (ede-proj-configure-synchronize this))
161 161
162(defmethod ede-proj-tweak-autoconf ((this ede-proj-target)) 162(defmethod ede-proj-tweak-autoconf ((this ede-proj-target))
163 "Tweak the configure file (current buffer) to accomodate THIS." 163 "Tweak the configure file (current buffer) to accommodate THIS."
164 ;; Check the compilers belonging to THIS, and call the autoconf 164 ;; Check the compilers belonging to THIS, and call the autoconf
165 ;; setup for those compilers. 165 ;; setup for those compilers.
166 (mapc 'ede-proj-tweak-autoconf (ede-proj-compilers this)) 166 (mapc 'ede-proj-tweak-autoconf (ede-proj-compilers this))
@@ -168,7 +168,7 @@ don't do it. A value of nil means to just do it.")
168 ) 168 )
169 169
170(defmethod ede-proj-flush-autoconf ((this ede-proj-target)) 170(defmethod ede-proj-flush-autoconf ((this ede-proj-target))
171 "Flush the configure file (current buffer) to accomodate THIS. 171 "Flush the configure file (current buffer) to accommodate THIS.
172By flushing, remove any cruft that may be in the file. Subsequent 172By flushing, remove any cruft that may be in the file. Subsequent
173calls to `ede-proj-tweak-autoconf' can restore items removed by flush." 173calls to `ede-proj-tweak-autoconf' can restore items removed by flush."
174 nil) 174 nil)
diff --git a/lisp/cedet/ede/proj-comp.el b/lisp/cedet/ede/proj-comp.el
index 9ec5cc64306..8757a6a1403 100644
--- a/lisp/cedet/ede/proj-comp.el
+++ b/lisp/cedet/ede/proj-comp.el
@@ -236,7 +236,7 @@ This will prevent rules from creating duplicate variables or rules."
236 236
237;;; Methods: 237;;; Methods:
238(defmethod ede-proj-tweak-autoconf ((this ede-compilation-program)) 238(defmethod ede-proj-tweak-autoconf ((this ede-compilation-program))
239 "Tweak the configure file (current buffer) to accomodate THIS." 239 "Tweak the configure file (current buffer) to accommodate THIS."
240 (mapcar 240 (mapcar
241 (lambda (obj) 241 (lambda (obj)
242 (cond ((stringp obj) 242 (cond ((stringp obj)
@@ -248,7 +248,7 @@ This will prevent rules from creating duplicate variables or rules."
248 (oref this autoconf))) 248 (oref this autoconf)))
249 249
250(defmethod ede-proj-flush-autoconf ((this ede-compilation-program)) 250(defmethod ede-proj-flush-autoconf ((this ede-compilation-program))
251 "Flush the configure file (current buffer) to accomodate THIS." 251 "Flush the configure file (current buffer) to accommodate THIS."
252 nil) 252 nil)
253 253
254(defmacro proj-comp-insert-variable-once (varname &rest body) 254(defmacro proj-comp-insert-variable-once (varname &rest body)
diff --git a/lisp/cedet/ede/proj-elisp.el b/lisp/cedet/ede/proj-elisp.el
index cff68debef0..1182c41128c 100644
--- a/lisp/cedet/ede/proj-elisp.el
+++ b/lisp/cedet/ede/proj-elisp.el
@@ -214,7 +214,7 @@ is found, such as a `-version' variable, or the standard header."
214 (error "Don't know how to update load path")))) 214 (error "Don't know how to update load path"))))
215 215
216(defmethod ede-proj-tweak-autoconf ((this ede-proj-target-elisp)) 216(defmethod ede-proj-tweak-autoconf ((this ede-proj-target-elisp))
217 "Tweak the configure file (current buffer) to accomodate THIS." 217 "Tweak the configure file (current buffer) to accommodate THIS."
218 (call-next-method) 218 (call-next-method)
219 ;; Ok, now we have to tweak the autoconf provided `elisp-comp' program. 219 ;; Ok, now we have to tweak the autoconf provided `elisp-comp' program.
220 (let ((ec (ede-expand-filename this "elisp-comp" 'newfile))) 220 (let ((ec (ede-expand-filename this "elisp-comp" 'newfile)))
@@ -238,7 +238,7 @@ is found, such as a `-version' variable, or the standard header."
238 (save-buffer)) ))) 238 (save-buffer)) )))
239 239
240(defmethod ede-proj-flush-autoconf ((this ede-proj-target-elisp)) 240(defmethod ede-proj-flush-autoconf ((this ede-proj-target-elisp))
241 "Flush the configure file (current buffer) to accomodate THIS." 241 "Flush the configure file (current buffer) to accommodate THIS."
242 ;; Remove crufty old paths from elisp-compile 242 ;; Remove crufty old paths from elisp-compile
243 (let ((ec (ede-expand-filename this "elisp-comp" 'newfile)) 243 (let ((ec (ede-expand-filename this "elisp-comp" 'newfile))
244 ) 244 )
@@ -381,11 +381,11 @@ Argument THIS is the target which needs to insert an info file."
381 ) 381 )
382 382
383(defmethod ede-proj-tweak-autoconf ((this ede-proj-target-elisp-autoloads)) 383(defmethod ede-proj-tweak-autoconf ((this ede-proj-target-elisp-autoloads))
384 "Tweak the configure file (current buffer) to accomodate THIS." 384 "Tweak the configure file (current buffer) to accommodate THIS."
385 (error "Autoloads not supported in autoconf yet")) 385 (error "Autoloads not supported in autoconf yet"))
386 386
387(defmethod ede-proj-flush-autoconf ((this ede-proj-target-elisp-autoloads)) 387(defmethod ede-proj-flush-autoconf ((this ede-proj-target-elisp-autoloads))
388 "Flush the configure file (current buffer) to accomodate THIS." 388 "Flush the configure file (current buffer) to accommodate THIS."
389 nil) 389 nil)
390 390
391(provide 'ede/proj-elisp) 391(provide 'ede/proj-elisp)
diff --git a/lisp/cedet/ede/proj-scheme.el b/lisp/cedet/ede/proj-scheme.el
index 64a17503684..e3d99129d31 100644
--- a/lisp/cedet/ede/proj-scheme.el
+++ b/lisp/cedet/ede/proj-scheme.el
@@ -41,7 +41,7 @@
41 "This target consists of scheme files.") 41 "This target consists of scheme files.")
42 42
43(defmethod ede-proj-tweak-autoconf ((this ede-proj-target-scheme)) 43(defmethod ede-proj-tweak-autoconf ((this ede-proj-target-scheme))
44 "Tweak the configure file (current buffer) to accomodate THIS." 44 "Tweak the configure file (current buffer) to accommodate THIS."
45 (autoconf-insert-new-macro "AM_INIT_GUILE_MODULE")) 45 (autoconf-insert-new-macro "AM_INIT_GUILE_MODULE"))
46 46
47(provide 'ede/proj-scheme) 47(provide 'ede/proj-scheme)